diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2007-12-01 04:19:39 -0500 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2007-12-01 04:19:39 -0500 |
commit | e6166f7b442ae55128b417559e48250c287e49b6 (patch) | |
tree | 3ad7fe120df2cc5902bf94af13b5309b59d86d48 /src/check-plt.sh | |
parent | 0d932f43fe17b2b65d9e52ff8f9c16122b525223 (diff) |
Convert bash scripts to regular sh ones for greater portability
Diffstat (limited to 'src/check-plt.sh')
-rwxr-xr-x | src/check-plt.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/check-plt.sh b/src/check-plt.sh index 3cc52b87..887370c6 100755 --- a/src/check-plt.sh +++ b/src/check-plt.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh LANG=C @@ -10,8 +10,8 @@ if ! which readelf 2>/dev/null >/dev/null; then fi for so in .libs/lib*.so; do - echo Checking $so for local PLT entries - readelf -W -r $so | grep 'JU\?MP_SLO' | grep 'cairo' && status=1 + echo Checking "$so" for local PLT entries + readelf -W -r "$so" | grep 'JU\?MP_SLO' | grep 'cairo' && status=1 done exit $status |