Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRon <ron@debian.org>2013-05-12 09:02:52 +0400
committerRon <ron@debian.org>2013-05-12 09:04:27 +0400
commit495fe9acec4b498f476957f77b6898a035ade160 (patch)
tree7f5583e1298c0d14c5ad62ddda588f1ae75fe38a
parent6420db17011cfa11ab7e3813e456b3d4b466a7c6 (diff)
Don't repeatedly install the doc dir for every file
(cherry picked from commit 3e6691a703c5139d3052b99c1d9e6331c84e1b7e)
-rw-r--r--doc/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am
index cf5908aa..02f34931 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -21,8 +21,8 @@ doxygen-build.stamp: Doxyfile $(DOCINPUTS)
touch $@
install-data-local:
+ $(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