Avoid rs(1) hitting LINE_MAX with custom trees that have large dependencies.

This commit is contained in:
Bryan Drewery 2014-09-08 17:01:30 +00:00
parent 29be5943e8
commit a9ff4acab2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=271278

View File

@ -89,12 +89,12 @@ main()
fi
prebuild_libs=$(
awk -F"${FS}" '{ print $2 }' ${LIBDEPENDS} |rs 0 1 |sort -u
awk -F"${FS}" '{ print $2 }' ${LIBDEPENDS} | tr ' ' '\n' |
sort -u
)
echo "Libraries with dependents:"
echo
echo ${prebuild_libs} |
rs 0 1
echo ${prebuild_libs} | tr ' ' '\n'
echo
echo "List of interdependencies:"