diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2013-11-13 09:57:23 -0500 |
---|---|---|
committer | Zhigang Gong <zhigang.gong@intel.com> | 2013-11-19 15:20:34 +0800 |
commit | 8d242b32416fb860400ef9e9c5cf617f6875db87 (patch) | |
tree | a6b2d5d8779d67cb6ce1f1a98adfb3816d4d8f57 /configure.ac | |
parent | 890a773884037bac39f221e062c90e589df9a3f1 (diff) |
config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
Fix Automake warning: AC_OUTPUT should be used without arguments.
www.gnu.org/software/autoconf/manual/autoconf.html#Configuration-Files
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Reviewed-by: Zhigang Gong <zhigang.gong@linux.intel.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 2983394..b7b25d0 100644 --- a/configure.ac +++ b/configure.ac @@ -187,8 +187,9 @@ fi AC_SUBST([GLX_DEFINES]) AC_SUBST([GLX_SYS_LIBS]) -AC_OUTPUT([Makefile +AC_CONFIG_FILES([Makefile glamor-egl.pc glamor.pc src/Makefile conf/Makefile]) +AC_OUTPUT |