summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2013-10-02 19:22:56 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2013-10-10 13:05:20 +0100
commit467b8cb3adbaf5681db8e8047e351fe237b68ce8 (patch)
tree011202109d772d5e891a5dc55a8f863ba2f63db8
parentb43547e1ec3806621eef3ab5d8137f1811bfff54 (diff)
Use AC_PROG_MKDIR_P/MKDIR_P, not deprecated AM_PROG_MKDIR_P/mkdir_p
Similar to MC commit 04dd9b4. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=70045 Reviewed-by: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
-rw-r--r--configure.ac2
-rw-r--r--extensions/Makefile.am2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index b8758e5..5843d5d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -36,7 +36,7 @@ AM_INIT_AUTOMAKE([1.9 -Wno-portability subdir-objects])
AM_PROG_LIBTOOL
AM_CONFIG_HEADER(config.h)
-AM_PROG_MKDIR_P
+AC_PROG_MKDIR_P
dnl check for tools
AC_PROG_CC
diff --git a/extensions/Makefile.am b/extensions/Makefile.am
index 8812839..6912d64 100644
--- a/extensions/Makefile.am
+++ b/extensions/Makefile.am
@@ -32,7 +32,7 @@ DROP_NAMESPACE = sed -e 's@xmlns:tp="http://telepathy\.freedesktop\.org/wiki/Dbu
XSLTPROCFLAGS = --nonet --novalid
_gen/all.xml: all.xml $(wildcard $(srcdir)/*.xml)
- @$(mkdir_p) _gen
+ @$(MKDIR_P) _gen
$(AM_V_GEN)$(XSLTPROC) $(XSLTPROCFLAGS) \
--xinclude $(tools_dir)/identity.xsl \
$< > $@