diff options
author | Andy Polyakov <appro@openssl.org> | 2013-11-12 21:49:15 +0100 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2013-11-12 21:51:37 +0100 |
commit | d1cf23ac86c05b22b8780e2c03b67230564d2d34 (patch) | |
tree | fab7c0654592fafd2f9e7bf260179bf1beb3268b /util | |
parent | Fix memory leak. (diff) | |
download | openssl-d1cf23ac86c05b22b8780e2c03b67230564d2d34.tar.xz openssl-d1cf23ac86c05b22b8780e2c03b67230564d2d34.zip |
Make Makefiles OSF-make-friendly.
PR: 3165
Diffstat (limited to 'util')
-rwxr-xr-x | util/shlib_wrap.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/util/shlib_wrap.sh b/util/shlib_wrap.sh index 9416d593d2..8775cb5411 100755 --- a/util/shlib_wrap.sh +++ b/util/shlib_wrap.sh @@ -90,4 +90,8 @@ fi cmd="$1${EXE_EXT}" shift -exec "$cmd" "$@" +if [ $# -eq 0 ]; then + exec "$cmd" # old sh, such as Tru64 4.x, fails to expand empty "$@" +else + exec "$cmd" "$@" +fi |