From fc3d4e7afbb930e57081eeb08bfbbe9c58bcd611 Mon Sep 17 00:00:00 2001 From: des Date: Fri, 3 Nov 2000 14:18:37 +0000 Subject: Don't build master ports unless they were explicitly required! Pointed out by: nectar --- misc/porteasy/src/porteasy.pl | 4 ++-- ports-mgmt/porteasy/src/porteasy.pl | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/misc/porteasy/src/porteasy.pl b/misc/porteasy/src/porteasy.pl index d01e3ca9bcd1..f1440a89701e 100644 --- a/misc/porteasy/src/porteasy.pl +++ b/misc/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); } } 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); } } -- cgit