diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2008-09-26 11:08:22 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2008-09-26 11:08:22 -0400 |
commit | 86e57671dd21078215505202ef8aa2141d10fb9c (patch) | |
tree | 340e7a7328ff02949e120b402250279ae07690a6 /src/check-plt.sh | |
parent | 096f9def0f599e527d97bb979f7cafbc87dcddc6 (diff) |
[check-*.sh] Redirect error reports to stderr
Diffstat (limited to 'src/check-plt.sh')
-rwxr-xr-x | src/check-plt.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/check-plt.sh b/src/check-plt.sh index e0914995..c7a12d3b 100755 --- a/src/check-plt.sh +++ b/src/check-plt.sh @@ -21,7 +21,7 @@ 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' && stat=1 + readelf -W -r "$so" | grep 'JU\?MP_SLO' | grep 'cairo' >&2 && stat=1 done exit $stat |