Skip to content
Snippets Groups Projects
Commit 3fd084af authored by Ron's avatar Ron
Browse files

Don't repeatedly install the doc dir for every file

parent 709396d5
No related branches found
No related tags found
No related merge requests found
......@@ -63,8 +63,8 @@ install-docs:
@if [ -z "$(NO_DOXYGEN)" ]; then \
( cd doc && \
echo "Installing documentation in $(DESTDIR)$(docdir)"; \
$(INSTALL) -d $(DESTDIR)$(docdir)/html/search; \
for f in `find html -type f \! -name "installdox"` ; do \
$(INSTALL) -d $(DESTDIR)$(docdir)/html/search; \
$(INSTALL_DATA) $$f $(DESTDIR)$(docdir)/$$f; \
done ) \
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment