[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r11158: Do not run configure from autogen.sh. Also switch to set -e (tor/trunk)
Author: weasel
Date: 2007-08-17 17:53:57 -0400 (Fri, 17 Aug 2007)
New Revision: 11158
Modified:
tor/trunk/autogen.sh
Log:
Do not run configure from autogen.sh. Also switch to set -e instead of linking all the commands using &&
Modified: tor/trunk/autogen.sh
===================================================================
--- tor/trunk/autogen.sh 2007-08-17 21:46:34 UTC (rev 11157)
+++ tor/trunk/autogen.sh 2007-08-17 21:53:57 UTC (rev 11158)
@@ -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