summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2013-10-02 17:19:40 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2013-10-09 18:44:48 +0100
commit6d06733a5fbaf05484ebf257920bcbb03151b0ea (patch)
treea0f033fe75bcf7f0a452052c9e39100b8bf422de
parentdefa68f58499825b06594e2f9c9a20f171769506 (diff)
downloadtelepathy-salut-6d06733a5fbaf05484ebf257920bcbb03151b0ea.tar.gz
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 53d9cbeb..69d61d30 100644
--- a/configure.ac
+++ b/configure.ac
@@ -33,7 +33,7 @@ dnl check for tools
AC_PROG_CC
AC_PROG_CC_STDC
AM_PROG_AS
-AM_PROG_MKDIR_P
+AC_PROG_MKDIR_P
dnl add common command line switches
SALUT_ARG_DEBUG
diff --git a/extensions/Makefile.am b/extensions/Makefile.am
index 895fcbde..39f94e96 100644
--- a/extensions/Makefile.am
+++ b/extensions/Makefile.am
@@ -47,7 +47,7 @@ AM_LDFLAGS = $(GCOV_LIBS) @DBUS_LIBS@ @GLIB_LIBS@ @TELEPATHY_GLIB_LIBS@
XSLTPROCFLAGS = --nonet --novalid
_gen/%.xml: %.xml $(wildcard *.xml) $(tools_dir)/identity.xsl
- $(mkdir_p) _gen
+ $(MKDIR_P) _gen
$(AM_V_GEN)$(XSLTPROC) $(XSLTPROCFLAGS) --xinclude $(tools_dir)/identity.xsl \
$< > $@