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.
This commit is contained in:
Jameson Graef Rollins 2009-12-05 02:02:38 -05:00
parent e72a6176e3
commit 9f99a301b1

6
configure vendored
View file

@ -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