devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=bf8aba5f9f52dd2ce8d0c292b54bae0c44d99462
commit bf8aba5f9f52dd2ce8d0c292b54bae0c44d99462 Author: Srivardhan Hebbar <[email protected]> Date: Tue Aug 19 09:23:37 2014 -0400 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 <[email protected]> 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="" --
