Hanspeter Niederstrasser
2012-Sep-26 23:36 UTC
[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 -- 1.7.10.2 (Apple Git-33) --------------000802070708000800090806--
Hanspeter Niederstrasser
2012-Sep-26 23:40 UTC
[opus] [PATCH] remove GNUism from install doc command
doc/Makefile.am requires GNU install because it uses the -D flag when installing the docs. -D doesn't exist in other flavors of install as found in BSD and OS X (and maybe others). The attached patch changes the html docs install procedure to 2 separate commands vs the current single command using 'install -D'. Tested to work on OS X 10.7 that uses BSD install. Should work with GNU install as well (but no access to such a system to test). Hanspeter -------------- next part --------------
Maybe Matching Threads
- speex-1.2rc1 breaks ABI on OS X
- Bug#498613: ignore.d.server/kernel rules have a missing escape
- Call for Papers: ManLang 2018 (Sept. 10-14, Linz, Austria)
- Call for Papers: ManLang 2018 (Sept. 10-14, Linz, Austria)
- [libopusfile PATCH] build: implement autotools build system for libopusfile. (v4)