[next] telepathy-glib: Use MKDIR_P instead of deprecated mkdir_p
Guillaume Desmottes
gdesmott at kemper.freedesktop.org
Tue Oct 29 14:31:37 CET 2013
Module: telepathy-glib
Branch: next
Commit: e4de996122b9559d03fabe2f3d3a1b51d29ffecc
URL: http://cgit.freedesktop.org/telepathy/telepathy-glib/commit/?id=e4de996122b9559d03fabe2f3d3a1b51d29ffecc
Author: Simon McVittie <simon.mcvittie at collabora.co.uk>
Date: Wed Oct 2 16:47:19 2013 +0100
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 at collabora.co.uk>
---
tests/dbus/Makefile.am | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/dbus/Makefile.am b/tests/dbus/Makefile.am
index b03c612..f79746e 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 $< > $@
More information about the telepathy-commits
mailing list