[Scummvm-cvs-logs] scummvm master -> 7c23394b3739c4350112f558a67ca61754a0ff24

wjp wjp at usecode.org
Tue Sep 11 10:52:00 CEST 2012


This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
000feae4cf CONFIGURE: Do dependency checking for all enabled engines
7c23394b37 CONFIGURE: Prevent [] in subengine list from triggering globbing


Commit: 000feae4cfc06cdeec1033672e0f247ad6428973
    https://github.com/scummvm/scummvm/commit/000feae4cfc06cdeec1033672e0f247ad6428973
Author: Willem Jan Palenstijn (wjp at usecode.org)
Date: 2012-09-11T00:57:42-07:00

Commit Message:
CONFIGURE: Do dependency checking for all enabled engines

Engines with manually specified dynamic/static were skipped previously.

Changed paths:
    configure



diff --git a/configure b/configure
index 7d490ef..d851228 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


Commit: 7c23394b3739c4350112f558a67ca61754a0ff24
    https://github.com/scummvm/scummvm/commit/7c23394b3739c4350112f558a67ca61754a0ff24
Author: Willem Jan Palenstijn (wjp at usecode.org)
Date: 2012-09-11T01:50:59-07:00

Commit Message:
CONFIGURE: Prevent [] in subengine list from triggering globbing

Changed paths:
    configure



diff --git a/configure b/configure
index d851228..4ecf420 100755
--- a/configure
+++ b/configure
@@ -692,7 +692,7 @@ get_engine_build_string() {
 		engine_string="`get_engine_name $1` $engine_string"
 	fi
 
-	echo $engine_string
+	echo "$engine_string"
 }
 
 # Get the string about building subengines
@@ -729,7 +729,7 @@ get_subengines_build_string() {
 		fi
 	fi
 
-	echo $subengine_string
+	echo "$subengine_string"
 }
 
 # Engine specific build strings






More information about the Scummvm-git-logs mailing list