Update of /cvsroot/psp/psp
In directory sc8-pr-cvs1:/tmp/cvs-serv6299
Modified Files:
configure.in
Log Message:
call AC_OUTPUT() only once with a list of files.
Index: configure.in
===================================================================
RCS file: /cvsroot/psp/psp/configure.in,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- configure.in 2 Aug 2003 07:10:11 -0000 1.8
+++ configure.in 2 Aug 2003 07:53:44 -0000 1.9
@@ -45,7 +45,7 @@
AC_MSG_RESULT([$PERL_VERSION])
AC_SUBST(PERL_VERSION) dnl
-AC_OUTPUT(
+INFILES="
Makefile
mk/common.mk
cpan/Makefile
@@ -54,10 +54,10 @@
lib/Makefile
etc-templates/Makefile
etc-templates/psp.conf
-)
+"
if test "$CPAN_STYLE" = ""; then
- AC_OUTPUT(
+ INFILES="$INFILES
lib/field/Makefile
lib/base/Makefile
lib/base/cgi/Makefile
@@ -65,5 +65,7 @@
lib/parser/Makefile
lib/parser/bin/Makefile
lib/tools/Makefile
- )
+ "
fi
+
+AC_OUTPUT($INFILES)
|