diff options
author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2000-09-19 19:35:48 +0000 |
---|---|---|
committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2000-09-19 19:35:48 +0000 |
commit | 991d375484cf05695851bc48717e15683f8d7c21 (patch) | |
tree | ecd563b78ac799ba68d363247fda6d557a5fdb55 /misc/porteasy/src | |
parent | f7983e4e954556f81560255c9e716e658756c1aa (diff) | |
download | ports-991d375484cf05695851bc48717e15683f8d7c21.tar.gz ports-991d375484cf05695851bc48717e15683f8d7c21.zip |
Notes
Diffstat (limited to 'misc/porteasy/src')
-rw-r--r-- | misc/porteasy/src/porteasy.pl | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/misc/porteasy/src/porteasy.pl b/misc/porteasy/src/porteasy.pl index cfcba5eef9b4..f44afce3349d 100644 --- a/misc/porteasy/src/porteasy.pl +++ b/misc/porteasy/src/porteasy.pl @@ -598,24 +598,26 @@ MAIN:{ # Show info if ($info) { - if (@ARGV) { + if (!@ARGV) { list_installed(); - } - foreach $port (keys(%reqd)) { - if ($reqd{$port} & &REQ_EXPLICIT) { - show_port_info($port); + } else { + foreach $port (keys(%reqd)) { + if ($reqd{$port} & &REQ_EXPLICIT) { + show_port_info($port); + } } } } # Clean if ($clean) { - if (@ARGV) { + if (!@ARGV) { clean_tree(); - } - foreach $port (keys(%reqd)) { - if (!($reqd{$port} & &REQ_IMPLICIT)) { - clean_port($port); + } else { + foreach $port (keys(%reqd)) { + if (!($reqd{$port} & &REQ_IMPLICIT)) { + clean_port($port); + } } } } |