diff options
author | cjs <cjs> | 2002-03-10 21:04:51 +0000 |
---|---|---|
committer | cjs <cjs> | 2002-03-10 21:04:51 +0000 |
commit | 596dc0836aaee1ced89a01844d40e7749d4dec5b (patch) | |
tree | 33dbd5d2c07012ffdb2a710b5ab7c87cedfa11ef /lang/sun-jre13 | |
parent | 7afe9a2fa036fb51563c33bb27adb746768e4b96 (diff) | |
download | pkgsrc-596dc0836aaee1ced89a01844d40e7749d4dec5b.tar.gz |
Properly quote arguments so that arguments with spaces in them don't get split.
Diffstat (limited to 'lang/sun-jre13')
-rwxr-xr-x | lang/sun-jre13/files/wrap.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/sun-jre13/files/wrap.sh b/lang/sun-jre13/files/wrap.sh index 904b72c6f53..d9560de3c71 100755 --- a/lang/sun-jre13/files/wrap.sh +++ b/lang/sun-jre13/files/wrap.sh @@ -1,3 +1,3 @@ #!/bin/sh -# $NetBSD: wrap.sh,v 1.1 2001/09/14 10:19:11 abs Exp $ -exec @PREFIX@/jre/bin/java $@ +# $NetBSD: wrap.sh,v 1.2 2002/03/10 21:04:51 cjs Exp $ +exec @PREFIX@/jre/bin/java "$@" |