diff options
author | Lucas De Marchi <lucas.demarchi@profusion.mobi> | 2012-10-02 12:57:28 -0300 |
---|---|---|
committer | Patrik Flykt <patrik.flykt@linux.intel.com> | 2012-10-03 11:23:10 +0300 |
commit | 13fda7982c4990fb1b1b5520c4db9da278baff3b (patch) | |
tree | 3d786fa7886e3e5c8c375d8fed1b8e740ed359db /configure.ac | |
parent | 8bc3846ebe4fdd935326e84926c3556a903da940 (diff) | |
download | connman-13fda7982c4990fb1b1b5520c4db9da278baff3b.tar.gz connman-13fda7982c4990fb1b1b5520c4db9da278baff3b.tar.bz2 connman-13fda7982c4990fb1b1b5520c4db9da278baff3b.zip |
build: Don't use deprecated AM_PROG_MKDIR_P
AM_PROG_MKDIR_P is deprecated since:
configure.ac:26: warning: The 'AM_PROG_MKDIR_P' macro is deprecated, and will soon be removed.
configure.ac:26: You should use the Autoconf-provided 'AC_PROG_MKDIR_P' macro instead,
configure.ac:26: and use '$(MKDIR_P)' instead of '$(mkdir_p)'in your Makefile.am files.
We are already using $(MKDIR_P) so we just need to call the right macro.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index dd9dfa46..47710bbe 100644 --- a/configure.ac +++ b/configure.ac @@ -23,7 +23,7 @@ AC_PROG_CC AM_PROG_CC_C_O AC_PROG_CC_PIE AC_PROG_INSTALL -AM_PROG_MKDIR_P +AC_PROG_MKDIR_P m4_define([_LT_AC_TAGCONFIG], []) m4_ifdef([AC_LIBTOOL_TAGS], [AC_LIBTOOL_TAGS([])]) |