Merge pull request #217 from strk/master-tolerant-configure

Have ./configure tolerate unknown options
This commit is contained in:
Raul Ochoa 2015-02-16 18:55:45 +01:00
commit 2d7b706507

5
configure vendored
View File

@ -56,9 +56,8 @@ while test -n "$1"; do
ENVIRONMENT=`echo "$1" | cut -d= -f2`
;;
*)
echo "Unknown option '$1'" >&2
usage >&2
exit 1
echo "Unused option '$1'" >&2
;;
esac
shift
done