aboutsummaryrefslogtreecommitdiff
path: root/misc/porteasy
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2000-11-03 14:30:42 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2000-11-03 14:30:42 +0000
commit81fe4a5ac818cf2e75362e3244347b9096405aab (patch)
tree4acd143faaa979625649e1418c134f5421e99a43 /misc/porteasy
parentf9fb82823f0c6b4fd96cc2040e0118858e293de2 (diff)
downloadports-81fe4a5ac818cf2e75362e3244347b9096405aab.tar.gz
ports-81fe4a5ac818cf2e75362e3244347b9096405aab.zip
Notes
Diffstat (limited to 'misc/porteasy')
-rw-r--r--misc/porteasy/src/porteasy.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/porteasy/src/porteasy.pl b/misc/porteasy/src/porteasy.pl
index f1440a89701e..2331e2c4441f 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_EXPLICIT) {
+ 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_EXPLICIT) {
+ if ($reqd{$port} & &REQ_EXPLICIT) {
build_port($port);
}
}