From: Mark Wooding Date: Sat, 25 Jun 2011 13:00:42 +0000 (+0100) Subject: Makefile.am: Use $(mkdir_p) instead of $(mkinstalldirs). X-Git-Tag: 2.1.1~3 X-Git-Url: https://git.distorted.org.uk/~mdw/mLib/commitdiff_plain/e11cc637d79ffc9117d637489da7f75db7193bc4 Makefile.am: Use $(mkdir_p) instead of $(mkinstalldirs). It works, for one thing. For some reason, mkinstalldirs is set to $(SHELL) $(install_sh), and install_sh is set to $(SHELL) .../install_sh. Can you see the problem here? --- diff --git a/Makefile.am b/Makefile.am index 44ada15..5e7f7fd 100644 --- a/Makefile.am +++ b/Makefile.am @@ -503,7 +503,7 @@ EXTRA_DIST += $(LIBMANS) $(PROGMANS) install-data-local: install-man install-man: $(LIBMANS) $(PROGMANS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(mandir) + $(mkdir_p) $(DESTDIR)$(mandir) $(top_srcdir)/config/maninst \ -d $(DESTDIR)$(mandir) -s $(srcdir) \ -i "$(INSTALL)" \