From: <sg...@us...> - 2003-09-05 09:32:53
|
Update of /cvsroot/libfunutil/libfunutil/toc/sbin In directory sc8-pr-cvs1:/tmp/cvs-serv24599/toc/sbin Modified Files: toconfigure Log Message: Added support for PACKAGE_CONFIGURE_SCRIPT Index: toconfigure =================================================================== RCS file: /cvsroot/libfunutil/libfunutil/toc/sbin/toconfigure,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- toconfigure 31 Aug 2003 20:29:30 -0000 1.10 +++ toconfigure 5 Sep 2003 09:32:50 -0000 1.11 @@ -59,7 +59,7 @@ toc_add_make PACKAGE_VERSION=${PACKAGE_VERSION} # include package-specific configure script. This eases upgrading a project's toc: -pkgconfig=configure.${PACKAGE_NAME} +pkgconfig=${PACKAGE_CONFIGURE_SCRIPT-configure.${PACKAGE_NAME}} test -f $pkgconfig && { . $pkgconfig err=$? @@ -73,7 +73,7 @@ # toc_run_fail toc_configure_finalcheck # toc_configre_finalcheck is arguable :/ -toc_endconfigure | perl -ane ' +toc_endconfigure | perl -ane '$| = 1; if( ! -f $F[0] ) { print; next; } $fn = $F[0]; $st = $_; |