diff options
author | kris <kris@FreeBSD.org> | 2004-03-08 09:27:35 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-08 09:27:35 +0800 |
commit | 4270d00813b0eabd2f143525f3b158917bdce307 (patch) | |
tree | bf978bb6bd97941bfeade2222479fe78bad60f67 /Tools | |
parent | 3e72b400dca3096c57cfc78173fee9fffc102c2c (diff) | |
download | freebsd-ports-gnome-4270d00813b0eabd2f143525f3b158917bdce307.tar.gz freebsd-ports-gnome-4270d00813b0eabd2f143525f3b158917bdce307.tar.zst freebsd-ports-gnome-4270d00813b0eabd2f143525f3b158917bdce307.zip |
Create a duds.full file that lists not only files that are marked IGNORE
but everything that depends on them.
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/makeduds | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tools/portbuild/scripts/makeduds b/Tools/portbuild/scripts/makeduds index 057352c2dc59..aaef16e3664b 100755 --- a/Tools/portbuild/scripts/makeduds +++ b/Tools/portbuild/scripts/makeduds @@ -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 |