blob: d45a6cecfd16bb04fe28c3c0e363d4a897e9925e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
#
indexfile=/usr/ports/INDEX
tmpfile=/tmp/makedescribe.tmp
#
failures=0
for i in `sed -e "s/ /_/g" ${indexfile}`; do
set $(echo $i | tr \| " ")
port=$2
cd ${port}
make describe > /dev/null 2> ${tmpfile} || \
{ failures=$(($failures+1)); \
echo '--------------- make describe failed for '${port}':'; \
cat ${tmpfile}; }
rm -f ${tmpfile}
done
echo '---------------'
echo 'Total number of ports that failed trying to build /usr/ports/INDEX: '${failures}
exit ${failures}
|