diff options
Diffstat (limited to 'BaseTools/BinWrappers/PosixLike/LzmaF86Compress')
-rwxr-xr-x | BaseTools/BinWrappers/PosixLike/LzmaF86Compress | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/BaseTools/BinWrappers/PosixLike/LzmaF86Compress b/BaseTools/BinWrappers/PosixLike/LzmaF86Compress index 18946a4d2d..50af530cbd 100755 --- a/BaseTools/BinWrappers/PosixLike/LzmaF86Compress +++ b/BaseTools/BinWrappers/PosixLike/LzmaF86Compress @@ -12,11 +12,12 @@ # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. # -for arg in $*; do - if [ "$arg" = "-e" -o "$arg" = "-d" ]; then - FLAG=--f86 - break; - fi -done +for arg; do + case $arg in + -e|-d) + set -- "$@" --f86 + break + ;; +esac -LzmaCompress $* $FLAG +exec LzmaCompress "$@" |