summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJameson Graef Rollins <jrollins@finestructure.net>2009-12-05 02:02:38 -0500
committerJameson Graef Rollins <jrollins@finestructure.net>2009-12-05 02:02:38 -0500
commit9f99a301b158dc1ed1c8c6754db1d57e3b0becf4 (patch)
tree6465f50d465d99c17f34dbdd47c185ed7eaa546a
parente72a6176e3fc3fcf4b1696e3f0ee9cf66509fb4d (diff)
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.
-rwxr-xr-xconfigure6
1 files changed, 0 insertions, 6 deletions
diff --git a/configure b/configure
index fa8e142..c6e0c09 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