From: Jameson Graef Rollins Date: Sat, 5 Dec 2009 07:02:38 +0000 (-0500) Subject: Remove ./configure failure for unrecognized options X-Git-Tag: debian-0.1-1~19^2~18 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=9f99a301b158dc1ed1c8c6754db1d57e3b0becf4;hp=e72a6176e3fc3fcf4b1696e3f0ee9cf66509fb4d Remove ./configure failure for unrecognized options The Debian build process (and presumably others) passes many options to the configure script. Most of them are not needed for notmuch. The configure script needs to just silently ignore the extra options it's not using, so that the configure stage won't fail and the build process can continue. --- diff --git a/configure b/configure index fa8e142b..c6e0c09a 100755 --- a/configure +++ b/configure @@ -59,12 +59,6 @@ for option; do exit 0 elif [ "${option%%=*}" = '--prefix' ] ; then PREFIX="${option#*=}" - else - echo "Unrecognized option: ${option}." - echo "See:" - echo " $0 --help" - echo "" - exit 1 fi done