[Scummvm-cvs-logs] scummvm master -> b0f961924a856b71ebffdb834db122145c4c10e5

tsoliman tarek at bashasoliman.com
Mon Feb 27 13:54:45 CET 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:
b0f961924a ANDROID: Fix mkplugin.sh freezing with bash


Commit: b0f961924a856b71ebffdb834db122145c4c10e5
    https://github.com/scummvm/scummvm/commit/b0f961924a856b71ebffdb834db122145c4c10e5
Author: Tarek Soliman (tsoliman at scummvm.org)
Date: 2012-02-27T04:51:18-08:00

Commit Message:
ANDROID: Fix mkplugin.sh freezing with bash

dash apparently works fine

Changed paths:
    dists/android/mkplugin.sh



diff --git a/dists/android/mkplugin.sh b/dists/android/mkplugin.sh
index 1929a0f..30a7ef6 100755
--- a/dists/android/mkplugin.sh
+++ b/dists/android/mkplugin.sh
@@ -11,6 +11,6 @@ TEMPLATE=$3
 PLUGIN_VERSION_CODE=$4
 TARGET=$5
 
-PLUGIN_DESC=`sed -n "s/add_engine\s$PLUGIN_NAME\s\"\(.\+\)\"\s.*/\1/p"` < $CONFIGURE
+PLUGIN_DESC=`sed -n "s/add_engine\s$PLUGIN_NAME\s\"\(.\+\)\"\s.*/\1/p" < $CONFIGURE`
 
 sed "s|@PLUGIN_NAME@|$PLUGIN_NAME|;s|@PLUGIN_VERSION_CODE@|$PLUGIN_VERSION_CODE|;s|@PLUGIN_DESC@|$PLUGIN_DESC|" < $TEMPLATE > $TARGET






More information about the Scummvm-git-logs mailing list