From 6f2c71053a64403034c32afe07ac7317c17b4748 Mon Sep 17 00:00:00 2001 From: stephena Date: Sun, 3 Jul 2005 12:50:19 +0000 Subject: [PATCH] Tweaked configure to silently ignore commandline options it doesn't know about. No use in quitting if the option wouldn't have had any effect anyway. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@603 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- stella/configure | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/stella/configure b/stella/configure index ce08ed3b6..4989d9409 100755 --- a/stella/configure +++ b/stella/configure @@ -316,11 +316,11 @@ for ac_option in $@; do --mandir=*) _mandir=`echo $ac_option | cut -d '=' -f 2` ;; - *) - echo "error: unrecognised option: $ac_option -Try \`$0 --help' for more information." >&2 - exit 1 - ;; +# *) +# echo "error: unrecognised option: $ac_option +#Try \`$0 --help' for more information." >&2 +# exit 1 +# ;; esac; done;