summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2013-10-26 08:13:32 -0400
committerGaetan Nadon <memsize@videotron.ca>2013-10-26 08:13:32 -0400
commitf6379fec0d76470403d5726d894e6c40be17628b (patch)
treeeb77bdd6bce026b0c9be6ac5be70dff5ef0703d4
parent28c8615ad7525a70bb6971261f70ba1f69651362 (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>
-rw-r--r--configure.ac10
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index 75bf8c2..07a4301 100644
--- a/configure.ac
+++ b/configure.ac
@@ -40,9 +40,9 @@ AM_CONDITIONAL(REDGLASS, true)
AM_CONDITIONAL(HANDHELDS, true)
-AC_OUTPUT([
- Makefile
- handhelds/Makefile
- redglass/Makefile
- whiteglass/Makefile
+AC_CONFIG_FILES([Makefile
+ handhelds/Makefile
+ redglass/Makefile
+ whiteglass/Makefile
])
+AC_OUTPUT