summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/make_libdeps.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/make_libdeps.sh b/tools/make_libdeps.sh
index 3b59488..2f5b32b 100644
--- a/tools/make_libdeps.sh
+++ b/tools/make_libdeps.sh
@@ -28,6 +28,7 @@
export PATH=/bin:/usr/bin
+LC_ALL=C # make sort deterministic
FS=': ' # internal field separator
LIBDEPENDS=./_libdeps # intermediate output file
USRSRC=${1:-/usr/src} # source root
@@ -64,7 +65,7 @@ genlibdepends()
{
(
cd ${USRSRC}
- find ${LIBS} -mindepth 1 -name Makefile |
+ find -s ${LIBS} -mindepth 1 -name Makefile |
xargs grep -l 'bsd\.lib\.mk' |
while read makefile; do
libdir=$(dirname ${makefile})
OpenPOWER on IntegriCloud