From e11cc637d79ffc9117d637489da7f75db7193bc4 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sat, 25 Jun 2011 14:00:42 +0100 Subject: [PATCH] Makefile.am: Use $(mkdir_p) instead of $(mkinstalldirs). Organization: Straylight/Edgeware From: Mark Wooding 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? --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)" \ -- [mdw]