aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2012-09-11 09:57:28 +0200
committerWillem Jan Palenstijn2012-09-11 09:57:42 +0200
commit000feae4cfc06cdeec1033672e0f247ad6428973 (patch)
treea4d6cb0b85dd0390788b0c4dd728a61b576182d6
parentf33884b02091537275a17ff55ae756ff4e862c29 (diff)
downloadscummvm-rg350-000feae4cfc06cdeec1033672e0f247ad6428973.tar.gz
scummvm-rg350-000feae4cfc06cdeec1033672e0f247ad6428973.tar.bz2
scummvm-rg350-000feae4cfc06cdeec1033672e0f247ad6428973.zip
CONFIGURE: Do dependency checking for all enabled engines
Engines with manually specified dynamic/static were skipped previously.
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 7d490ef5be..d851228df9 100755
--- a/configure
+++ b/configure
@@ -583,7 +583,7 @@ check_engine_deps() {
unmet_deps=""
# Check whether the engine is enabled
- if test `get_engine_build $1` = yes ; then
+ if test `get_engine_build $1` != "no" ; then
# Collect unmet dependencies
for dep in `get_engine_dependencies $1`; do
if test `get_feature_state $dep` = "no"; then