Do not run configure from autogen.sh. Also switch to set -e instead of linking all the commands using &&

svn:r11158
This commit is contained in:
Peter Palfrader 2007-08-17 21:53:57 +00:00
parent 1f244d3943
commit 08a640c54b
1 changed files with 7 additions and 5 deletions

View File

@ -1,7 +1,9 @@
#!/bin/sh
set -e
# Run this to generate all the initial makefiles, etc.
aclocal && \
autoheader && \
autoconf && \
automake --add-missing --copy && \
if test x$NOCONF = x ; then ./configure "$@"; fi
aclocal
autoheader
autoconf
automake --add-missing --copy