summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/util
diff options
context:
space:
mode:
authormiod <>2014-04-13 15:16:37 +0000
committermiod <>2014-04-13 15:16:37 +0000
commitb904f69e7ff86ba6dd76b909b7e9caa352065e66 (patch)
tree35d5dabcac1af44d18fd05adf22f21b9c9d84278 /src/lib/libcrypto/util
parent4362780bc2f199c11d5612e83851f6fc88139d21 (diff)
parent25175e3da5ec29dca5edfe32f588ea68b17071c9 (diff)
downloadopenbsd-b904f69e7ff86ba6dd76b909b7e9caa352065e66.tar.gz
openbsd-b904f69e7ff86ba6dd76b909b7e9caa352065e66.tar.bz2
openbsd-b904f69e7ff86ba6dd76b909b7e9caa352065e66.zip
This commit was generated by cvs2git to track changes on a CVS vendor
branch.
Diffstat (limited to 'src/lib/libcrypto/util')
-rwxr-xr-xsrc/lib/libcrypto/util/shlib_wrap.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libcrypto/util/shlib_wrap.sh b/src/lib/libcrypto/util/shlib_wrap.sh
index 9416d593d2..8775cb5411 100755
--- a/src/lib/libcrypto/util/shlib_wrap.sh
+++ b/src/lib/libcrypto/util/shlib_wrap.sh
@@ -90,4 +90,8 @@ fi
90 90
91cmd="$1${EXE_EXT}" 91cmd="$1${EXE_EXT}"
92shift 92shift
93exec "$cmd" "$@" 93if [ $# -eq 0 ]; then
94 exec "$cmd" # old sh, such as Tru64 4.x, fails to expand empty "$@"
95else
96 exec "$cmd" "$@"
97fi