summaryrefslogtreecommitdiff
path: root/configure.ac
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 /configure.ac
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 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index d69988c10..6bc154b16 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_PREREQ([2.59])
+AC_PREREQ([2.60])
# Making releases:
# set the new version number:
@@ -53,7 +53,7 @@ AC_PROG_CC_STDC
AC_PROG_INSTALL
AC_PROG_LIBTOOL
AM_PROG_LIBTOOL
-AM_PROG_MKDIR_P
+AC_PROG_MKDIR_P
# pkg-config 0.21 adds CFLAGS from Requires.private, which we need
PKG_PROG_PKG_CONFIG([0.21])