diff options
author | lioux <lioux@FreeBSD.org> | 2002-01-06 11:05:49 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2002-01-06 11:05:49 +0800 |
commit | 9b146b471d03374cf915d62bdf0f20a59ec42de3 (patch) | |
tree | f2f41e785f6cf89fae3928c17139988ca1323f62 /net | |
parent | a97cd14096ad136088115ee99d2a2a7022eff84f (diff) | |
download | freebsd-ports-gnome-9b146b471d03374cf915d62bdf0f20a59ec42de3.tar.gz freebsd-ports-gnome-9b146b471d03374cf915d62bdf0f20a59ec42de3.tar.zst freebsd-ports-gnome-9b146b471d03374cf915d62bdf0f20a59ec42de3.zip |
o Fix bug: do not incorrectly use shift from sh(1). First command
line argument was being lost when there was more than 1 argument.
o bump PORTREVISION
Diffstat (limited to 'net')
-rw-r--r-- | net/linux-agsatellite/Makefile | 1 | ||||
-rw-r--r-- | net/linux-agsatellite/files/wrapper.sh | 5 |
2 files changed, 1 insertions, 5 deletions
diff --git a/net/linux-agsatellite/Makefile b/net/linux-agsatellite/Makefile index 4d2e1f923724..7ef8ccdcebb3 100644 --- a/net/linux-agsatellite/Makefile +++ b/net/linux-agsatellite/Makefile @@ -7,6 +7,7 @@ PORTNAME= agsatellite PORTVERSION= 0.520 +PORTREVISION= 1 CATEGORIES= audio net linux MASTER_SITES= http://www.audiogalaxy.com/downloads/ DISTNAME= AGSatellite${PORTVERSION:S/.//}-glibc21 diff --git a/net/linux-agsatellite/files/wrapper.sh b/net/linux-agsatellite/files/wrapper.sh index e2daaee83078..e53603d86a76 100644 --- a/net/linux-agsatellite/files/wrapper.sh +++ b/net/linux-agsatellite/files/wrapper.sh @@ -3,11 +3,6 @@ PREFIX="%%PREFIX%%" PROGRAM="${0}" -if [ ${#} -gt 1 ] -then - shift -fi - if [ ! -d ${HOME}/.agsatellite ] then mkdir -p ${HOME}/.agsatellite |