Author: bapt
Date: Wed Feb 10 00:26:01 2016
New Revision: 295455
URL: https://svnweb.freebsd.org/changeset/base/295455

Log:
  Fix make universe when running with non POSIX/C locales using a locale 
sensitive
  pattern
  
  Reported by:  many
  Submitted by: jilles

Modified:
  head/Makefile

Modified: head/Makefile
==============================================================================
--- head/Makefile       Wed Feb 10 00:08:51 2016        (r295454)
+++ head/Makefile       Wed Feb 10 00:26:01 2016        (r295455)
@@ -466,7 +466,8 @@ _THINNER=cat
 _THINNER=xargs grep -L "^.NO_UNIVERSE" || true
 .endif
 KERNCONFS!=    cd ${KERNSRCDIR}/${TARGET}/conf && \
-               find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \
+               find [[:upper:][:digit:]]*[[:upper:][:digit:]] \
+               -type f -maxdepth 0 \
                ! -name DEFAULTS ! -name NOTES | \
                ${_THINNER}
 universe_kernconfs:
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to