diff options
author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2000-11-03 14:18:37 +0000 |
---|---|---|
committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2000-11-03 14:18:37 +0000 |
commit | 57ec16fc3471f00c9de8b912e057d0eea570f497 (patch) | |
tree | 781864448dfbd47380e0009c1e75e183ccc090ba /ports-mgmt | |
parent | 67f5d583735e5d3c081752fea62bc4ac5f7d0dae (diff) | |
download | ports-57ec16fc3471f00c9de8b912e057d0eea570f497.tar.gz ports-57ec16fc3471f00c9de8b912e057d0eea570f497.zip |
Don't build master ports unless they were explicitly required!
Pointed out by: nectar
Notes
Notes:
svn path=/head/; revision=34736
Diffstat (limited to 'ports-mgmt')
-rw-r--r-- | ports-mgmt/porteasy/src/porteasy.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ports-mgmt/porteasy/src/porteasy.pl b/ports-mgmt/porteasy/src/porteasy.pl index d01e3ca9bcd1..f1440a89701e 100644 --- a/ports-mgmt/porteasy/src/porteasy.pl +++ b/ports-mgmt/porteasy/src/porteasy.pl @@ -968,7 +968,7 @@ MAIN:{ clean_tree(); } else { foreach $port (keys(%reqd)) { - if (!($reqd{$port} & &REQ_IMPLICIT)) { + if ($reqd{$port} == &REQ_EXPLICIT) { clean_port($port); } } @@ -988,7 +988,7 @@ MAIN:{ # some dependencies (most commonly XFree86) may be bogus. if ($build || $packages) { foreach $port (keys(%reqd)) { - if (!($reqd{$port} & &REQ_IMPLICIT)) { + if ($reqd{$port} == &REQ_EXPLICIT) { build_port($port); } } |