diff options
author | des <des@FreeBSD.org> | 2004-04-11 21:54:48 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2004-04-11 21:54:48 +0000 |
commit | 5cbd9a94289e9c4ed95dcc07091142df7eabf958 (patch) | |
tree | bc8791f8beb421958323fa361315462d1b1aa5b9 /misc | |
parent | 0b1be733b72c0c858efefeb0f3cc3bb9848c6ee4 (diff) | |
download | FreeBSD-ports-5cbd9a94289e9c4ed95dcc07091142df7eabf958.zip FreeBSD-ports-5cbd9a94289e9c4ed95dcc07091142df7eabf958.tar.gz |
Don't require additional command line arguments when -I is specified.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/porteasy/Makefile | 2 | ||||
-rw-r--r-- | misc/porteasy/src/porteasy.pl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/misc/porteasy/Makefile b/misc/porteasy/Makefile index 1b9e450..e66d77a 100644 --- a/misc/porteasy/Makefile +++ b/misc/porteasy/Makefile @@ -9,7 +9,7 @@ PORTNAME= porteasy PORTVERSION= 2.7.13 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc MASTER_SITES= # none DISTFILES= # none diff --git a/misc/porteasy/src/porteasy.pl b/misc/porteasy/src/porteasy.pl index 04a8801..70b47f7 100644 --- a/misc/porteasy/src/porteasy.pl +++ b/misc/porteasy/src/porteasy.pl @@ -1135,7 +1135,7 @@ MAIN:{ ) or usage(); - if (!@ARGV && + if (!@ARGV && !$installed && ($build || $fetch || $list || $packages || $plist || $website)) { usage(); } |