[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] fix obsolete usage of AC_OUTPUT
From: |
william hubbs |
Subject: |
[PATCH] fix obsolete usage of AC_OUTPUT |
Date: |
Tue, 14 Sep 2010 14:21:33 -0500 |
From: William Hubbs <address@hidden>
To: address@hidden
The current usage of AC_OUTPUT is to not pass it any arguments but to
list the files to generate with the AC_CONFIG_FILES macro instead.
---
configure.ac | 24 +++++++++++++++++++++++-
1 files changed, 23 insertions(+), 1 deletions(-)
diff --git a/configure.ac b/configure.ac
index d36e016..cfe6aaf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -414,4 +414,26 @@ AC_SUBST(RDYNAMIC)
localedir=${datadir}/locale
AC_SUBST(localedir)
-AC_OUTPUT([Makefile include/Makefile src/Makefile src/common/Makefile
src/server/Makefile src/modules/Makefile src/c/Makefile src/c/api/Makefile
src/c/clients/Makefile src/c/clients/say/Makefile
src/c/clients/spdsend/Makefile src/tests/Makefile src/audio/Makefile
src/audio/static_plugins.c config/Makefile config/modules/Makefile
config/clients/Makefile doc/Makefile src/python/Makefile
src/python/speechd/Makefile src/python/speechd_config/Makefile po/Makefile.in])
+AC_CONFIG_FILES([Makefile
+ config/Makefile
+ config/clients/Makefile
+ config/modules/Makefile
+ doc/Makefile
+ include/Makefile
+ po/Makefile.in
+ src/Makefile
+ src/audio/Makefile
+ src/audio/static_plugins.c
+ src/c/Makefile
+ src/c/api/Makefile
+ src/c/clients/Makefile
+ src/c/clients/say/Makefile
+ src/c/clients/spdsend/Makefile
+ src/common/Makefile
+ src/modules/Makefile
+ src/python/Makefile
+ src/python/speechd/Makefile
+ src/python/speechd_config/Makefile
+ src/server/Makefile
+ src/tests/Makefile])
+AC_OUTPUT
--
1.7.2.2
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [PATCH] fix obsolete usage of AC_OUTPUT,
william hubbs <=