From 75db1979bc55c90c7ac59dda440a4fa3654aea47 Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Sun, 16 Nov 2003 16:54:08 +0000 Subject: [PATCH] install was using mkinstalldirs which is being phased out by the autotools (Automake 1.8). As our home grown installation is not done by Automake and thus the use of mkinstalldirs is not detected by Automake, mkinstalldirs is no longer available. install-sh used instead. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@5324 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SWIG/Makefile.in b/SWIG/Makefile.in index 5dec6e7f1..3b3842eaf 100644 --- a/SWIG/Makefile.in +++ b/SWIG/Makefile.in @@ -313,7 +313,7 @@ distclean-dead: INSTALL = @abs_srcdir@/Tools/config/install-sh -c INSTALL_DATA = ${INSTALL} -m 644 INSTALL_PROGRAM = ${INSTALL} -m 755 -MKINSTDIRS = @abs_srcdir@/Tools/config/mkinstalldirs +MKINSTDIRS = @abs_srcdir@/Tools/config/install-sh -m 0755 -d M4_SOURCE_DIR = @abs_srcdir@/Tools/config M4_INSTALL_DIR = @datadir@/aclocal