svn commit: r295455 - head

Baptiste Daroussin bapt at FreeBSD.org
Wed Feb 10 00:26:02 UTC 2016


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:


More information about the svn-src-head mailing list