summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2013-10-02 16:47:19 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2013-10-09 18:43:52 +0100
commite4de996122b9559d03fabe2f3d3a1b51d29ffecc (patch)
treece0453875270daadaed7db283dda787d9e5f89af /tests
parent7b6e496317a332b81fb079256f7995cf082b5c57 (diff)
downloadtelepathy-glib-e4de996122b9559d03fabe2f3d3a1b51d29ffecc.tar.gz
Use MKDIR_P instead of deprecated mkdir_p
In theory, AC_PROG_MKDIR_P only sets MKDIR_P, although for now it also sets the deprecated mkdir_p for compatibility with AM_PROG_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>
Diffstat (limited to 'tests')
-rw-r--r--tests/dbus/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/dbus/Makefile.am b/tests/dbus/Makefile.am
index b03c61276..f79746e04 100644
--- a/tests/dbus/Makefile.am
+++ b/tests/dbus/Makefile.am
@@ -352,7 +352,7 @@ _gen/svc.h: _gen/svc.c
_gen/svc.c: with-properties.xml \
$(top_srcdir)/tools/glib-ginterface-gen.py \
Makefile.am
- $(AM_V_at)$(mkdir_p) _gen
+ $(AM_V_at)$(MKDIR_P) _gen
$(AM_V_GEN)$(PYTHON) $(top_srcdir)/tools/glib-ginterface-gen.py \
--filename=_gen/svc \
--signal-marshal-prefix=NOT_NEEDED \
@@ -361,5 +361,5 @@ _gen/svc.c: with-properties.xml \
_gen/errors-check.h: $(top_srcdir)/spec/errors.xml \
$(top_srcdir)/tools/glib-errors-check-gen.py
- $(AM_V_at)$(mkdir_p) _gen
+ $(AM_V_at)$(MKDIR_P) _gen
$(AM_V_GEN)$(PYTHON) $(top_srcdir)/tools/glib-errors-check-gen.py $< > $@