From 08a640c54b3cd82a0bd9fd45a30306dbb00a05f6 Mon Sep 17 00:00:00 2001 From: Peter Palfrader Date: Fri, 17 Aug 2007 21:53:57 +0000 Subject: Do not run configure from autogen.sh. Also switch to set -e instead of linking all the commands using && svn:r11158 --- autogen.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/autogen.sh b/autogen.sh index e97bd2451..52833840b 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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 -- cgit v1.2.3