Fail on invalid --enable/disable options

svn-id: r31910
This commit is contained in:
Jordi Vilalta Prat 2008-05-06 22:09:27 +00:00
parent 10b73b474f
commit 586046d871

4
configure vendored
View File

@ -374,7 +374,7 @@ engine_enable() {
fi
engine=`echo $eng | sed 's/-/_/g'`
if test "$opt" = "static" -o "$opt" = "dynamic" -o "$opt" = "yes" ; then
if test "`get_engine_build ${engine}`" != "$opt" ; then
if test "`get_engine_name ${engine}`" != "" -a "`get_engine_build ${engine}`" != "$opt" ; then
eval _engine_${engine}_build=$opt
else
option_error
@ -387,7 +387,7 @@ engine_enable() {
# Disable the given engine
engine_disable() {
engine=`echo $1 | sed 's/-/_/g'`
if test "`get_engine_build $engine`" != "no" ; then
if test "`get_engine_name ${engine}`" != "" -a "`get_engine_build $engine`" != "no" ; then
eval _engine_${engine}_build=no
else
option_error