From 699827755e4314b6439337e9cbab7d9ab59058c1 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Wed, 14 Nov 2012 22:55:01 -0500 Subject: configure: Don't exit on unrecognized options. --- diff --git a/configure b/configure index 45de403..5017b52 100755 --- a/configure +++ b/configure @@ -254,8 +254,9 @@ parse_options() "${_opts}" EOF if [ ${?} -ne 0 ]; then - printf 'invalid %s name: %s\n' "${_type}" "${_opt}" >&2 - exit 1 + printf 'warning: unrecognized %s name: %s\n' \ + "${_type}" "${_opt}" >&2 + continue fi if ${_optarg_set}; then _opt="$(printf '%s' "${_opt}" | tr -c '[a-z0-9]' '_')" -- cgit v0.9.1