diff options
author | des <des@FreeBSD.org> | 2000-11-03 22:30:42 +0800 |
---|---|---|
committer | des <des@FreeBSD.org> | 2000-11-03 22:30:42 +0800 |
commit | ad93adb2809e9d75b93527747011be1445ad294e (patch) | |
tree | cdc62b2397e582d6d712e506c39c4b4a2e0f54db /ports-mgmt/porteasy | |
parent | 64c51ef3791a19a56226c323e8cb23b7afd7cf4e (diff) | |
download | freebsd-ports-gnome-ad93adb2809e9d75b93527747011be1445ad294e.tar.gz freebsd-ports-gnome-ad93adb2809e9d75b93527747011be1445ad294e.tar.zst freebsd-ports-gnome-ad93adb2809e9d75b93527747011be1445ad294e.zip |
Previous commit was incomplete.
Diffstat (limited to 'ports-mgmt/porteasy')
-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 f1440a89701e..2331e2c4441f 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_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); } } |