mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
Fail on invalid --enable/disable options
svn-id: r31910
This commit is contained in:
parent
10b73b474f
commit
586046d871
4
configure
vendored
4
configure
vendored
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user