]> git.donarmstrong.com Git - lilypond.git/blobdiff - autogen.sh
* Ignore test failures on non-i386/amd64 architectures (Closes:
[lilypond.git] / autogen.sh
index f851875cab1db911e683eb93339d0d4b3a9240a0..2fd8bebd5a533bcaf7e9b932c0b0bf4fd6e5919d 100755 (executable)
@@ -3,16 +3,19 @@
 
 srcdir=`dirname $0`
 
+case $1 in
+    --noconf*) NOCONFIGURE=true;;
+esac
 
 if [ ! -f aclocal.m4 -o stepmake/aclocal.m4 -nt aclocal.m4 ]; then
-    echo "stepmake/aclocal.m4 is newer. Copying file." 
+    echo "stepmake/aclocal.m4 is newer.  Copying file." 
     cp -f stepmake/aclocal.m4 aclocal.m4
 fi
 
 if [ ! -f autogen.sh -o stepmake/autogen.sh -nt autogen.sh ]; then
-    echo "stepmake/autogen.sh is newer. Copying file." 
+    echo "stepmake/autogen.sh is newer.  Copying file." 
     cp -f stepmake/autogen.sh autogen.sh
-    exec ./autogen.sh
+    exec ./autogen.sh "$@"
 fi
 
 # Be paranoid: check for autoconf >= 2.50
@@ -53,10 +56,13 @@ if test -n "$NOCONFIGURE"; then
 fi
 
 if test -z "$*"; then
-    echo "warning: about to run \`./configure' without arguments."
-    echo "arguments on the \`$0\'"
-    echo "command line will be passed to \`./configure'."
-    echo
+    cat <<EOF
+    Warning: about to run \`configure' without arguments.
+    arguments on the \`$0' command line
+    will be passed to \`configure'.
+
+    Invoke with --noconfigure to skip configure step.
+EOF
 fi
 
 echo Running $srcdir/configure $conf_flags "$@" ...