]> git.proxmox.com Git - mirror_edk2.git/commitdiff
BaseTools: Fix BinWrappers LzmaF86Compress Script
authorLiming Gao <liming.gao@intel.com>
Fri, 10 Jul 2015 02:51:38 +0000 (02:51 +0000)
committerlgao4 <lgao4@Edk2>
Fri, 10 Jul 2015 02:51:38 +0000 (02:51 +0000)
LzmaF86Compress Script should use $arg to arg value.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17909 6f19259b-4bc3-4df7-8a09-765794883524

BaseTools/BinWrappers/PosixLike/LzmaF86Compress

index c3e49cf29d8f75704aea54dd14a41cd948d75ef4..18946a4d2dc4e655bcfe2e3e04042be22a2d078b 100755 (executable)
@@ -13,7 +13,7 @@
 #
 
 for arg in $*; do
-  if [ "arg" = "-e" -o "arg" = "-d" ]; then
+  if [ "$arg" = "-e" -o "$arg" = "-d" ]; then
     FLAG=--f86
     break;
   fi