Improve the check for ports which have gone missing, and just ignore

them.  We want a run to perform as much work as possible before it
gives up.
This commit is contained in:
phk 2011-02-17 08:54:22 +00:00
parent 17f6dd70d4
commit faa5e8a94a

View File

@ -178,7 +178,11 @@ ports_recurse() (
do
if [ ! -d $d ] ; then
echo "Missing port $d" 1>&2
exit 2
continue
fi
if [ ! -f $d/Makefile ] ; then
echo "Missing port $d" 1>&2
continue
fi
if [ "x$t" != "x." ] ; then
echo "\"$t\" -> \"$d\"" >> /tmp/_.plist.dot