[Bash-completion-commits] [SCM] bash-completion branch, master, updated. 1.90-174-gf8ac6a5

Ville Skyttä ville.skytta at iki.fi
Fri Jun 8 16:02:14 UTC 2012


The following commit has been merged in the master branch:
commit f8ac6a5aeb287763341e4db2dacd1eb2c3cdecf6
Author: Ville Skyttä <ville.skytta at iki.fi>
Date:   Fri Jun 8 18:59:31 2012 +0300

    autotools: Use MKDIR_P instead of mkdir_p (Alioth: #313671).
    
    mkdir_p is obsolete since automake 1.10 and will be removed in 1.13
    according to docs in 1.12.1.

diff --git a/configure.ac b/configure.ac
index 999f653..23a7e80 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,8 @@
-AC_PREREQ([2.59])
+AC_PREREQ([2.60])
 AC_INIT([bash-completion], [1.99])
 AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip -Wall -Werror])
 AC_PROG_LN_S
+AC_PROG_MKDIR_P
 AC_SUBST(compatdir, $sysconfdir/bash_completion.d)
 AC_CONFIG_FILES([Makefile completions/Makefile doc/Makefile helpers/Makefile test/Makefile bash-completion.pc])
 AC_OUTPUT
diff --git a/test/Makefile.am b/test/Makefile.am
index 82f6df9..19d7557 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -8,7 +8,7 @@ EXTRA_DIST = completion \
 	     unit
 
 all:
-	$(mkdir_p) log tmp
+	$(MKDIR_P) log tmp
 
 distclean-local:
 	rm -rf log tmp

-- 
bash-completion



More information about the Bash-completion-commits mailing list