summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2013-06-07 17:08:53 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2013-06-11 15:43:44 +0100
commit0e944e7d41b38cb248a2164468d2fe064f61819d (patch)
treee20b304e735cf5d051bb73019a8e971d7b571568 /tools
parent1fbfb30038dbdda78f79533138fec05a270ea485 (diff)
downloadtelepathy-glib-0e944e7d41b38cb248a2164468d2fe064f61819d.tar.gz
Use AC_PROG_MKDIR_P instead of deprecated AM_PROG_MKDIR_P
This means we define MKDIR_P instead of mkdir_p - adjust. Strictly speaking this requires Autoconf 2.59d, but 2.60 is hardly a new innovation (it was released in 2006). Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk> Reviewed-by: Xavier Claessens <xavier.claessens@collabora.co.uk> Bug: https://bugs.freedesktop.org/show_bug.cgi?id=65517
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" \