From a9ff4acab205a4ba43f4c33bb3cb12703909aa3a Mon Sep 17 00:00:00 2001 From: Bryan Drewery Date: Mon, 8 Sep 2014 17:01:30 +0000 Subject: [PATCH] Avoid rs(1) hitting LINE_MAX with custom trees that have large dependencies. --- tools/make_libdeps.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/make_libdeps.sh b/tools/make_libdeps.sh index dcd1c208698c..84bf895efeb7 100644 --- a/tools/make_libdeps.sh +++ b/tools/make_libdeps.sh @@ -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:"