summaryrefslogtreecommitdiff
path: root/tools
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 17:58:28 +0100
commitc21d633ef135331c95f65786f394627a924588cb (patch)
tree1a36b81adffe67a34c05dc60a386c07f8879570a /tools
parent3a0d46b14462004f487e85a41f47ecbca621f6cf (diff)
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 'tools')
-rw-r--r--tools/lcov.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lcov.am b/tools/lcov.am
index 80023cb78..d2d282ac3 100644
--- a/tools/lcov.am
+++ b/tools/lcov.am
@@ -7,7 +7,7 @@ lcov-report:
lcov --directory @top_srcdir@ --output-file @top_builddir@/lcov.info \
--remove @top_builddir@/lcov.info.tmp telepathy-glib-scan.c
rm @top_builddir@/lcov.info.tmp
- $(mkdir_p) @top_builddir@/lcov.html
+ $(MKDIR_P) @top_builddir@/lcov.html
echo "Coming soon!" > @top_builddir@/lcov.html/index.html
git_commit=`GIT_DIR=@top_srcdir@/.git git log -1 --pretty=format:%h 2>/dev/null`;\
genhtml --title "@PACKAGE_STRING@ $$git_commit" \