diff --git a/SheepShaver/src/Unix/autogen.sh b/SheepShaver/src/Unix/autogen.sh index 3c2a5225..e23fb5f3 100755 --- a/SheepShaver/src/Unix/autogen.sh +++ b/SheepShaver/src/Unix/autogen.sh @@ -33,4 +33,11 @@ do autoheader; autoconf) done -./configure "$@" +if [ x"$NO_CONFIGURE" = "x" ]; then + echo " + Running 'configure $@':" + if [ -z "$*" ]; then + echo " ** If you wish to pass arguments to ./configure, please" + echo " ** specify them on the command line." + fi + ./configure "$@" +fi