aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@in.tum.de>2010-06-18 14:16:48 +0000
committerMatthias Wachs <wachs@in.tum.de>2010-06-18 14:16:48 +0000
commit72d5ebb6e8e036916764ebf9c16a98884e3183c8 (patch)
treed03ddfdaa372c74d8cad2b85a278b22fd72114df
parentac0f9ba4573adf07a4824860a1e6819b5609192e (diff)
downloadlibextractor-72d5ebb6e8e036916764ebf9c16a98884e3183c8.tar.gz
libextractor-72d5ebb6e8e036916764ebf9c16a98884e3183c8.zip
some included m4 asks for AM_..., not AC_...
-rw-r--r--m4/Makefile.am1
-rw-r--r--m4/mkdirp.m44
2 files changed, 3 insertions, 2 deletions
diff --git a/m4/Makefile.am b/m4/Makefile.am
index 562ce60..d492582 100644
--- a/m4/Makefile.am
+++ b/m4/Makefile.am
@@ -21,6 +21,7 @@ EXTRA_DIST = glibc2.m4 intl.m4 intldir.m4 lock.m4 visibility.m4 \
21 lib-prefix.m4 \ 21 lib-prefix.m4 \
22 longdouble.m4 \ 22 longdouble.m4 \
23 longlong.m4 \ 23 longlong.m4 \
24 mkdirp.m4 \
24 nls.m4 \ 25 nls.m4 \
25 pkg.m4 \ 26 pkg.m4 \
26 po.m4 \ 27 po.m4 \
diff --git a/m4/mkdirp.m4 b/m4/mkdirp.m4
index dd58d4b..d49b608 100644
--- a/m4/mkdirp.m4
+++ b/m4/mkdirp.m4
@@ -5,7 +5,7 @@
5# gives unlimited permission to copy and/or distribute it, 5# gives unlimited permission to copy and/or distribute it,
6# with or without modifications, as long as this notice is preserved. 6# with or without modifications, as long as this notice is preserved.
7 7
8# AC_PROG_MKDIR_P 8# AM_PROG_MKDIR_P
9# --------------- 9# ---------------
10# Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise. 10# Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise.
11# 11#
@@ -27,7 +27,7 @@
27# one can create it and the other will error out. Consequently we 27# one can create it and the other will error out. Consequently we
28# restrict ourselves to GNU make (using the --version option ensures 28# restrict ourselves to GNU make (using the --version option ensures
29# this.) 29# this.)
30AC_DEFUN([AC_PROG_MKDIR_P], 30AC_DEFUN([AM_PROG_MKDIR_P],
31[if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then 31[if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
32 # We used to keeping the `.' as first argument, in order to 32 # We used to keeping the `.' as first argument, in order to
33 # allow $(mkdir_p) to be used without argument. As in 33 # allow $(mkdir_p) to be used without argument. As in