diff options
author | kris <kris@FreeBSD.org> | 2004-03-08 09:28:28 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-08 09:28:28 +0800 |
commit | 8369916d995ed7353f8e821d193a029b0b004ea4 (patch) | |
tree | f7209fe4a7ca59798f469c34b282e436e690b0d1 /Tools | |
parent | 4270d00813b0eabd2f143525f3b158917bdce307 (diff) | |
download | freebsd-ports-gnome-8369916d995ed7353f8e821d193a029b0b004ea4.tar.gz freebsd-ports-gnome-8369916d995ed7353f8e821d193a029b0b004ea4.tar.zst freebsd-ports-gnome-8369916d995ed7353f8e821d193a029b0b004ea4.zip |
Prune out packages that will not be built because a dependency is marked
IGNORE/FORBIDDEN/etc (using duds.full).
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/prunefailure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/portbuild/scripts/prunefailure b/Tools/portbuild/scripts/prunefailure index ea3371d845b3..46f172f33bd0 100755 --- a/Tools/portbuild/scripts/prunefailure +++ b/Tools/portbuild/scripts/prunefailure @@ -67,7 +67,7 @@ while read dir name ver olddate date count; do continue fi - if grep -q $newver $home/duds.orig; then + if grep -qxF $newver $home/duds.full; then echo "$newver listed in duds, should not be here" continue fi |