1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

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:
Poul-Henning Kamp 2011-02-17 08:54:22 +00:00
parent 26fdf1e8b6
commit 8c8d5abcb3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=218766

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