Update of /cvsroot/wisp/wisp/tools
In directory sc8-pr-cvs1:/tmp/cvs-serv7082/tools
Modified Files:
build.sh
Log Message:
always supply --add-missing --copy to automake
Index: build.sh
===================================================================
RCS file: /cvsroot/wisp/wisp/tools/build.sh,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- build.sh 6 Feb 2003 17:58:36 -0000 1.11
+++ build.sh 6 Feb 2003 18:29:52 -0000 1.12
@@ -32,7 +32,8 @@
debian
EOD
`"
-test "$1" = "automake" && exec automake --foreign $makefiles
+test "$1" = "automake" &&
+ exec automake --add-missing --copy --foreign $makefiles
test -r aclocal.m4 || aclocal
test -r src/config.h.in || autoheader
test -r Makefile.in || automake --add-missing --copy --foreign $makefiles
|