From 10ea337795af6482e50096b6928c438b95aefaf6 Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Thu, 4 Oct 2012 03:37:09 -0300 Subject: [PATCH] build-sys: Don't use deprecated AM_PROG_MKDIR_P AM_PROG_MKDIR_P is deprecated since: configure.ac:23: warning: The 'AM_PROG_MKDIR_P' macro is deprecated, and will soon be removed. configure.ac:23: You should use the Autoconf-provided 'AC_PROG_MKDIR_P' macro instead, configure.ac:23: 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. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 7d9a34d8c..deab9e9f2 100644 --- a/configure.ac +++ b/configure.ac @@ -20,7 +20,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([])]) -- 2.47.3