1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00

Create a duds.full file that lists not only files that are marked IGNORE

but everything that depends on them.
This commit is contained in:
Kris Kennaway 2004-03-08 01:27:35 +00:00
parent 88ecf0ff35
commit 4215cfc4c1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=103251

View File

@ -26,6 +26,7 @@ branch=$1
buildenv ${pb} ${arch} ${branch}
duds=${pb}/${arch}/${branch}/duds
index=${PORTSDIR}/${INDEXFILE}
unset DISPLAY
@ -34,3 +35,6 @@ cd ${PORTSDIR}
make -j${DUDSJOBS} ignorelist ECHO_MSG=true > ${duds} || exit 1
sort ${duds} > ${duds}.tmp
mv -f ${duds}.tmp ${duds}
cp ${duds} ${duds}.orig
grep -Ff ${duds}.orig ${index} | cut -f 1 -d \| > ${duds}.full