From 64ebc7ae518f013968729c1303c5952c04e0afc7 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Tue, 11 Jun 2013 15:03:41 +0100 Subject: [PATCH 3/7] Use AC_MKDIR_P instead of deprecated AM_MKDIR_P This replaces $(mkdir_p) with $(MKDIR_P) - adjust. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=54114 Signed-off-by: Simon McVittie --- configure.ac | 4 ++-- extensions/Makefile.am | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 5ae6cfd..238edc0 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_PREREQ([2.59]) +AC_PREREQ([2.60]) # Making releases: # set the new version number: @@ -35,7 +35,7 @@ AM_INIT_AUTOMAKE([1.9 -Wno-portability]) 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 bb837da..3fa95b1 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 \ $< > $@ -- 1.7.10.4