summaryrefslogtreecommitdiff
path: root/util/shlib_wrap.sh
diff options
context:
space:
mode:
Diffstat (limited to 'util/shlib_wrap.sh')
-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