diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2013-10-31 14:10:32 +0000 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2013-10-31 14:15:01 +0000 |
commit | 6b05f8f7b39b2dd77f4e71447a633b568cb1311c (patch) | |
tree | b35de8f888680805fd289ec4e9d7384fd8b7e2fe | |
parent | e9e819e55d914392be94f5c67e34bb227eb15a97 (diff) |
Use AC_PROG_MKDIR_P, MKDIR_P instead of deprecated AM_PROG_MKDIR_P, mkdir_p
Similar to MC commit 04dd9b4.
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | extensions/Makefile.am | 4 | ||||
-rw-r--r-- | tests/dbus/Makefile.am | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index ec2b27db0..68537dc00 100644 --- a/configure.ac +++ b/configure.ac @@ -90,7 +90,7 @@ AC_SEARCH_LIBS([strerror],[cposix]) AC_PROG_CC AC_HEADER_STDC LT_INIT -AM_PROG_MKDIR_P +AC_PROG_MKDIR_P AM_PATH_GLIB_2_0 AC_PATH_XTRA IT_PROG_INTLTOOL([0.35.0]) diff --git a/extensions/Makefile.am b/extensions/Makefile.am index a7c263b1f..4f6c10431 100644 --- a/extensions/Makefile.am +++ b/extensions/Makefile.am @@ -90,7 +90,7 @@ XSLTPROCFLAGS = --nonet --novalid # Generated files which can be generated for all categories simultaneously _gen/all.xml: all.xml $(wildcard *.xml) $(tools_dir)/xincludator.py - $(mkdir_p) _gen + $(MKDIR_P) _gen $(AM_V_GEN)$(PYTHON) $(tools_dir)/xincludator.py $< > $@ doc/index.html: _gen/all.xml $(tools_dir)/doc-generator.xsl @@ -132,7 +132,7 @@ _gen/interfaces.h: _gen/all.xml \ # although you can subdivide further if you want. _gen/misc.xml: misc.xml $(wildcard *.xml) $(tools_dir)/xincludator.py - $(mkdir_p) _gen + $(MKDIR_P) _gen $(AM_V_GEN)$(PYTHON) $(tools_dir)/xincludator.py $< > $@ # do nothing, output as a side-effect diff --git a/tests/dbus/Makefile.am b/tests/dbus/Makefile.am index 3b837c59e..9059b1ded 100644 --- a/tests/dbus/Makefile.am +++ b/tests/dbus/Makefile.am @@ -85,5 +85,5 @@ EXTRA_DIST = \ $(NULL) dbus-1/%.conf: $(srcdir)/dbus-1/%.conf.in - $(AM_V_at)$(mkdir_p) dbus-1 + $(AM_V_at)$(MKDIR_P) dbus-1 $(AM_V_GEN)sed -e "s|[@]abs_top_builddir[@]|@abs_top_builddir@|g" $< > $@ |