summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2013-11-12 21:49:15 +0100
committerAndy Polyakov <appro@openssl.org>2013-11-12 21:51:37 +0100
commitd1cf23ac86c05b22b8780e2c03b67230564d2d34 (patch)
treefab7c0654592fafd2f9e7bf260179bf1beb3268b /util
parent16bc45ba956fdf07c7cda7feda88de597569df63 (diff)
Make Makefiles OSF-make-friendly.
PR: 3165
Diffstat (limited to 'util')
-rwxr-xr-xutil/shlib_wrap.sh6
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