diff options
author | pav <pav@FreeBSD.org> | 2005-09-24 04:02:14 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-09-24 04:02:14 +0800 |
commit | 59ea499e3efeae607c2bf3d58acaca1c593ad39d (patch) | |
tree | ab5e5e7ceb1225d3b68a96f3bd5c78bad19e9227 /games/duel | |
parent | 5398b639caa59e7ed28f1c271f8643bb8f85c4e5 (diff) | |
download | freebsd-ports-gnome-59ea499e3efeae607c2bf3d58acaca1c593ad39d.tar.gz freebsd-ports-gnome-59ea499e3efeae607c2bf3d58acaca1c593ad39d.tar.zst freebsd-ports-gnome-59ea499e3efeae607c2bf3d58acaca1c593ad39d.zip |
- Fix wrapper scripts so it passes its arguments to the real executable
PR: ports/86476
Submitted by: Alejandro Pulver <alejandro@varnet.biz> (maintainer)
Diffstat (limited to 'games/duel')
-rw-r--r-- | games/duel/Makefile | 1 | ||||
-rw-r--r-- | games/duel/files/duel-sh.in | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/games/duel/Makefile b/games/duel/Makefile index 02d80e97d5b3..d4381d9b1a8e 100644 --- a/games/duel/Makefile +++ b/games/duel/Makefile @@ -7,6 +7,7 @@ PORTNAME= duel PORTVERSION= 0.98 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://www.personal.rdg.ac.uk/~sir03me/ DISTNAME= lin${PORTNAME} diff --git a/games/duel/files/duel-sh.in b/games/duel/files/duel-sh.in index a4b16f177e54..ef7ae296f1c6 100644 --- a/games/duel/files/duel-sh.in +++ b/games/duel/files/duel-sh.in @@ -18,4 +18,4 @@ find * -type f -exec ln -s %%DATADIR%%/{} ~/.duel/{} \; 2>/dev/null || exit 1 cd ~/.duel || exit 1 -exec %%PREFIX%%/libexec/duel +exec %%PREFIX%%/libexec/duel "$@" |