From 467b8cb3adbaf5681db8e8047e351fe237b68ce8 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Wed, 2 Oct 2013 19:22:56 +0100 Subject: 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 --- configure.ac | 2 +- extensions/Makefile.am | 2 +- 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 \ $< > $@ -- cgit v1.2.1