Author: des
Date: Tue Sep 10 18:34:38 2013
New Revision: 255454
URL: http://svnweb.freebsd.org/changeset/base/255454

Log:
  Make this more deterministic by sorting the libraries before processing
  them and ensuring that we always use the samme collation rules.
  
  Approved by:  re (gjb)

Modified:
  head/tools/make_libdeps.sh

Modified: head/tools/make_libdeps.sh
==============================================================================
--- head/tools/make_libdeps.sh  Tue Sep 10 17:26:09 2013        (r255453)
+++ head/tools/make_libdeps.sh  Tue Sep 10 18:34:38 2013        (r255454)
@@ -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})
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to