Skip to content
Snippets Groups Projects
Commit adfc54a4 authored by James Zern's avatar James Zern Committed by Gerrit Code Review
Browse files

Merge "Get rid of bashisms in armlink_adapter.sh"

parents ab21378a eb2fbea6
No related branches found
No related tags found
No related merge requests found
#!/bin/bash #!/bin/sh
## ##
## Copyright (c) 2010 The WebM project authors. All Rights Reserved. ## Copyright (c) 2010 The WebM project authors. All Rights Reserved.
## ##
...@@ -13,20 +13,20 @@ ...@@ -13,20 +13,20 @@
verbose=0 verbose=0
set -- $* set -- $*
for i; do for i; do
if [ "$i" == "-o" ]; then if [ "$i" = "-o" ]; then
on_of=1 on_of=1
elif [ "$i" == "-v" ]; then elif [ "$i" = "-v" ]; then
verbose=1 verbose=1
elif [ "$i" == "-g" ]; then elif [ "$i" = "-g" ]; then
args="${args} --debug" args="${args} --debug"
elif [ "$on_of" == "1" ]; then elif [ "$on_of" = "1" ]; then
outfile=$i outfile=$i
on_of=0 on_of=0
elif [ -f "$i" ]; then elif [ -f "$i" ]; then
infiles="$infiles $i" infiles="$infiles $i"
elif [ "${i:0:2}" == "-l" ]; then elif [ "${i#-l}" != "$i" ]; then
libs="$libs ${i#-l}" libs="$libs ${i#-l}"
elif [ "${i:0:2}" == "-L" ]; then elif [ "${i#-L}" != "$i" ]; then
libpaths="${libpaths} ${i#-L}" libpaths="${libpaths} ${i#-L}"
else else
args="${args} ${i}" args="${args} ${i}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment