[telepathy-account-widgets] Use AC_PROG_MKDIR_P and MKDIR_P instead of AM_PROG_MKDIR_P and mkdir_p



commit 9e3a147bf649bf94829f9a4fdb8924897d3f3730
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date:   Tue Oct 22 11:50:57 2013 +0200

    Use AC_PROG_MKDIR_P and MKDIR_P instead of AM_PROG_MKDIR_P and mkdir_p
    
    The latter are deprecated, and recent Automake makes a lot of noise
    about them.

 configure.ac  |    2 +-
 tools/lcov.am |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 5acb1e4..e70a4cc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -62,7 +62,7 @@ AM_SILENT_RULES([yes])
 # Check for programs
 AC_PROG_CC
 AC_HEADER_STDC
-AM_PROG_MKDIR_P
+AC_PROG_MKDIR_P
 AM_PATH_GLIB_2_0
 AC_PATH_XTRA
 
diff --git a/tools/lcov.am b/tools/lcov.am
index 80023cb..d2d282a 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" \


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]