From bf8aba5f9f52dd2ce8d0c292b54bae0c44d99462 Mon Sep 17 00:00:00 2001 From: Srivardhan Hebbar Date: Tue, 19 Aug 2014 09:23:37 -0400 Subject: [PATCH] efl: Fixed unwanted configure.ac warning. Summary: Below was the warning: configure.ac:247: warning: The 'AM_PROG_MKDIR_P' macro is deprecated, and its use is discouraged. configure.ac:247: You should use the Autoconf-provided 'AC_PROG_MKDIR_P' macro instead, configure.ac:247: and use '$(MKDIR_P)' instead of '$(mkdir_p)'in your Makefile.am files. @fix Signed-off-by: Srivardhan Hebbar Reviewers: devilhorns Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D1341 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index aac5cd8..1e85f40 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,7 @@ AH_BOTTOM([ AC_USE_SYSTEM_EXTENSIONS -AM_INIT_AUTOMAKE([1.6 dist-bzip2 dist-xz -Wall color-tests subdir-objects]) +AM_INIT_AUTOMAKE([1.6 dist-bzip2 dist-xz -Wall color-tests subdir-objects -Wno-obsolete]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) CFOPT_WARNING="" -- 2.7.4