mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 03:49:02 +00:00
Avoid rs(1) hitting LINE_MAX with custom trees that have large dependencies.
This commit is contained in:
parent
29be5943e8
commit
a9ff4acab2
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=271278
@ -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:"
|
||||
|
Loading…
Reference in New Issue
Block a user