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.
This commit is contained in:
parent
127a65fee2
commit
f8ac6a5aeb
@ -1,7 +1,8 @@
|
|||||||
AC_PREREQ([2.59])
|
AC_PREREQ([2.60])
|
||||||
AC_INIT([bash-completion], [1.99])
|
AC_INIT([bash-completion], [1.99])
|
||||||
AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip -Wall -Werror])
|
AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip -Wall -Werror])
|
||||||
AC_PROG_LN_S
|
AC_PROG_LN_S
|
||||||
|
AC_PROG_MKDIR_P
|
||||||
AC_SUBST(compatdir, $sysconfdir/bash_completion.d)
|
AC_SUBST(compatdir, $sysconfdir/bash_completion.d)
|
||||||
AC_CONFIG_FILES([Makefile completions/Makefile doc/Makefile helpers/Makefile test/Makefile bash-completion.pc])
|
AC_CONFIG_FILES([Makefile completions/Makefile doc/Makefile helpers/Makefile test/Makefile bash-completion.pc])
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
@ -8,7 +8,7 @@ EXTRA_DIST = completion \
|
|||||||
unit
|
unit
|
||||||
|
|
||||||
all:
|
all:
|
||||||
$(mkdir_p) log tmp
|
$(MKDIR_P) log tmp
|
||||||
|
|
||||||
distclean-local:
|
distclean-local:
|
||||||
rm -rf log tmp
|
rm -rf log tmp
|
||||||
|
Loading…
x
Reference in New Issue
Block a user