From c47804f717b96a1f93a2b50e1696c250b0dc9a48 Mon Sep 17 00:00:00 2001 From: Steve Kondik Date: Wed, 7 Jul 2010 09:06:39 -0400 Subject: [PATCH] Fix bashisms --- tools/squisher | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/squisher b/tools/squisher index cee085a0..382e1cbf 100755 --- a/tools/squisher +++ b/tools/squisher @@ -53,7 +53,7 @@ done cd $WORK/ota/system -if [ "$TARGET_PRODUCT" == "cyanogen_dream_sapphire" ] +if [ "$TARGET_PRODUCT" = "cyanogen_dream_sapphire" ] then # Relocate su and put xbin.sqf where it belongs rm -f bin/su @@ -79,7 +79,7 @@ cd $WORK/ota rm -rf recovery # Remove xbin stuff and fix up updater-script -if [ "$TARGET_PRODUCT" == "cyanogen_dream_sapphire" ] +if [ "$TARGET_PRODUCT" = "cyanogen_dream_sapphire" ] then sed -e "s/system\/xbin\/su/system\/bin\/su/g" META-INF/com/google/android/updater-script | grep -v xbin > updater-script.new else