From 820903d95effd1411aa61d63e02cbb5202c9658f Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Wed, 2 Oct 2013 17:19:40 +0100 Subject: [PATCH 2/2] Use AC_PROG_MKDIR_P/MKDIR_P, not deprecated AM_PROG_MKDIR_P/mkdir_p Similar to MC commit 04dd9b4. --- configure.ac | 2 +- extensions/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 53d9cbe..69d61d3 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 895fcbd..39f94e9 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 \ $< > $@ -- 1.8.4.rc3