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

wjp wjp at usecode.org
Mon Sep 24 17:27:46 CEST 2012


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

Summary:
7cdda8efd2 CONFIGURE: Fix subengine status output


Commit: 7cdda8efd25b946f2bc3fb5558d4efe7c45ed643
    https://github.com/scummvm/scummvm/commit/7cdda8efd25b946f2bc3fb5558d4efe7c45ed643
Author: Willem Jan Palenstijn (wjp at usecode.org)
Date: 2012-09-24T08:26:41-07:00

Commit Message:
CONFIGURE: Fix subengine status output

We were reporting subengine status before checking its dependencies.

Changed paths:
    configure



diff --git a/configure b/configure
index 27b6645..a0119bb 100755
--- a/configure
+++ b/configure
@@ -3981,9 +3981,6 @@ for engine in $_engines; do
 				isbuilt=STATIC_PLUGIN
 			fi
 		fi
-
-		# Prepare the information to be shown
-		prepare_engine_build_strings $engine
 	else
 		# It's a subengine, just say yes or no
 		if test "`get_engine_build $engine`" = "no" ; then
@@ -4002,6 +3999,14 @@ for engine in $_engines; do
 	fi
 done
 
+# Prepare the information to be shown
+for engine in $_engines; do
+	if test "`get_engine_sub $engine`" = "no" ; then
+		# It's a main engine
+		prepare_engine_build_strings $engine
+	fi
+done
+
 #
 # Detection of WIP/unstable engines
 #






More information about the Scummvm-git-logs mailing list