Commit 08a640c5 authored by Peter Palfrader's avatar Peter Palfrader
Browse files

Do not run configure from autogen.sh. Also switch to set -e instead of...

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

svn:r11158
parent 1f244d39
Loading
Loading
Loading
Loading
+7 −5
Original line number Diff line number Diff line
#!/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