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:
parent
17f6dd70d4
commit
faa5e8a94a
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user