summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorappro <appro>2007-08-26 08:51:23 +0000
committerappro <appro>2007-08-26 08:51:23 +0000
commit9236acec7c1f678cc477dbf4700d1ea003fc26a6 (patch)
tree05c48c79ac6cff336bb01c46b86bcfdb0bf2c3fa
parent20dd57febf9585f64574e0c14d90324996b049d0 (diff)
downloadopenssl-9236acec7c1f678cc477dbf4700d1ea003fc26a6.tar.gz
Short circuit ranlib in trap handler.
-rwxr-xr-xfips/fipsld2
1 files changed, 1 insertions, 1 deletions
diff --git a/fips/fipsld b/fips/fipsld
index 5d7758144..542db566b 100755
--- a/fips/fipsld
+++ b/fips/fipsld
@@ -128,7 +128,7 @@ libcrypto*|*.dll) # must be linking a shared lib...
# Temporarily remove fipscanister.o from libcrypto.a!
# We are required to use the standalone copy...
trap 'ar r "${THERE}/libcrypto.a" "${CANISTER_O}";
- (ranlib "${THERE}/libcrypto.a") 2>/dev/null;
+ (ranlib "${THERE}/libcrypto.a") 2>/dev/null || :;
sleep 1;
touch -c "${TARGET}"' 0