search for: docinputs

Displaying 1 result from an estimated 1 matches for "docinputs".

Did you mean: dh_inputs
2012 Sep 26
1
[PATCH] remove GNUism from install doc command
--- doc/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/Makefile.am b/doc/Makefile.am index ba6f64c..cf5908a 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -22,7 +22,8 @@ doxygen-build.stamp: Doxyfile $(DOCINPUTS) install-data-local: for f in `find html -type f \! -name "installdox"`; do \ - $(INSTALL_DATA) -D $$f $(DESTDIR)$(docdir)/$$f; \ + $(INSTALL) -d $(DESTDIR)$(docdir)/html/search; \ + $(INSTALL_DATA) $$f $(DESTDIR)$(docdir)/$$f; \ done $(INSTALL) -d $(DESTDIR)$(mandir)/man3 -...