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:53:39 +0100
commitca44f72938c7c1394472ff26bf7613085102effb (patch)
tree1748a52199d7ffe50a45ab8326a60d9c7e387943 /util
parent18f49508a5d45fecd261f523210140eeb2a77f27 (diff)
Make Makefiles OSF-make-friendly.
PR: 3165 (cherry picked from commit d1cf23ac86c05b22b8780e2c03b67230564d2d34)
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