diff options
author | abs <abs@pkgsrc.org> | 2002-03-12 15:01:34 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2002-03-12 15:01:34 +0000 |
commit | 1ad02f09c4d07dbfed962c0363f05a094ca4a8d5 (patch) | |
tree | 4e1605563492009a069da52802cf1c168de46e18 /games/heretic2-demo/files | |
parent | baaf4eab29f76a37a2069621d9bcc9252d92b7bd (diff) | |
download | pkgsrc-1ad02f09c4d07dbfed962c0363f05a094ca4a8d5.tar.gz |
quote $@ correctly
Diffstat (limited to 'games/heretic2-demo/files')
-rw-r--r-- | games/heretic2-demo/files/wrapper.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/heretic2-demo/files/wrapper.sh b/games/heretic2-demo/files/wrapper.sh index 8b5d4345d8e..c08fd209518 100644 --- a/games/heretic2-demo/files/wrapper.sh +++ b/games/heretic2-demo/files/wrapper.sh @@ -1,5 +1,5 @@ #!/bin/sh -e -# $NetBSD: wrapper.sh,v 1.1.1.1 2000/10/16 12:24:58 abs Exp $ +# $NetBSD: wrapper.sh,v 1.2 2002/03/12 15:01:34 abs Exp $ # Simple wrapper for lokigames @@BINNAME@@ # linux binary calls mkdir for this with a trailing '/' @@ -7,4 +7,4 @@ if [ ! -d $HOME/.loki ];then mkdir $HOME/.loki fi cd @@LIBDIR@@ -exec ./@@BINNAME@@ $@ +exec ./@@BINNAME@@ "$@" |