[Scummvm-cvs-logs] scummvm master -> 15457452816ae9776bafd8ce7f51b893ea8afa49

tsoliman tarek at bashasoliman.com
Mon Feb 27 13:47:42 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:
1545745281 ANDROID: Fix sed escaping in mkplugin.sh.


Commit: 15457452816ae9776bafd8ce7f51b893ea8afa49
    https://github.com/scummvm/scummvm/commit/15457452816ae9776bafd8ce7f51b893ea8afa49
Author: Alyssa Milburn (fuzzie at fuzzie.org)
Date: 2012-02-27T04:46:18-08:00

Commit Message:
ANDROID: Fix sed escaping in mkplugin.sh.
(cherry picked from commit a836eb2cff9e631eac3ae4a0abc9952bc869d1c3)

Changed paths:
    dists/android/mkplugin.sh



diff --git a/dists/android/mkplugin.sh b/dists/android/mkplugin.sh
index 1811fc0..1929a0f 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