From: Alexandre Duret-Lutz Date: Thu, 13 Nov 2003 19:18:02 +0000 (+0000) Subject: * m4/mkdirp.m4: Do not require AM_AUX_DIR_EXPAND. X-Git-Tag: Release-1-7d~16 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=21349125c3d0bea0639d32f7d8c0fdeab5e7ff8c;p=automake.git * m4/mkdirp.m4: Do not require AM_AUX_DIR_EXPAND. --- diff --git a/ChangeLog b/ChangeLog index 362a867c..f506dc4e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-11-13 Alexandre Duret-Lutz + + * m4/mkdirp.m4: Do not require AM_AUX_DIR_EXPAND. + 2003-11-12 Alexandre Duret-Lutz * automake.in (scan_autoconf_traces): Honor sinclude. diff --git a/configure b/configure index ff7d51de..bc3c8897 100755 --- a/configure +++ b/configure @@ -1467,7 +1467,7 @@ else test -d $d && rmdir $d done # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. - if test -f "$am_aux_dir/mkinstalldirs"; then + if test -f "$ac_aux_dir/mkinstalldirs"; then mkdir_p='$(mkinstalldirs) -m 0755' else mkdir_p='$(install_sh) -m 0755 -d' diff --git a/m4/mkdirp.m4 b/m4/mkdirp.m4 index 6958adf3..034fc914 100644 --- a/m4/mkdirp.m4 +++ b/m4/mkdirp.m4 @@ -20,8 +20,7 @@ # 02111-1307, USA. AC_DEFUN([AM_PROG_MKDIR_P], -[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -if mkdir -m 0755 -p -- . 2>/dev/null; then +[if mkdir -m 0755 -p -- . 2>/dev/null; then mkdir_p='mkdir -m 0755 -p --' else # On NextStep and OpenStep, the `mkdir' command does not @@ -33,7 +32,7 @@ else test -d $d && rmdir $d done # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. - if test -f "$am_aux_dir/mkinstalldirs"; then + if test -f "$ac_aux_dir/mkinstalldirs"; then mkdir_p='$(mkinstalldirs) -m 0755' else mkdir_p='$(install_sh) -m 0755 -d'