* m4/mkdirp.m4: Do not require AM_AUX_DIR_EXPAND.
authorAlexandre Duret-Lutz <adl@gnu.org>
Thu, 13 Nov 2003 19:18:03 +0000 (19:18 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Thu, 13 Nov 2003 19:18:03 +0000 (19:18 +0000)
ChangeLog
configure
m4/mkdirp.m4

index 362a867..f506dc4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2003-11-13  Alexandre Duret-Lutz  <adl@gnu.org>
+
+       * m4/mkdirp.m4: Do not require AM_AUX_DIR_EXPAND.
+
 2003-11-12  Alexandre Duret-Lutz  <adl@gnu.org>
 
        * automake.in (scan_autoconf_traces): Honor sinclude.
index ff7d51d..bc3c889 100755 (executable)
--- 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'
index 6958adf..034fc91 100644 (file)
@@ -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'