Previous commit was incomplete.

This commit is contained in:
Dag-Erling Smørgrav 2000-11-03 14:30:42 +00:00
parent f9fb82823f
commit 81fe4a5ac8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=34738
2 changed files with 4 additions and 4 deletions

View File

@ -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);
}
}

View File

@ -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);
}
}