svn commit: r295679 - stable/10
Baptiste Daroussin
bapt at FreeBSD.org
Tue Feb 16 22:37:26 UTC 2016
Author: bapt
Date: Tue Feb 16 22:37:24 2016
New Revision: 295679
URL: https://svnweb.freebsd.org/changeset/base/295679
Log:
MFC r295455
Fix make universe when running with non POSIX/C locales using a locale sensitive
pattern
Approved by: re@ (gjb, marius)
Modified:
stable/10/Makefile
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/Makefile
==============================================================================
--- stable/10/Makefile Tue Feb 16 22:13:25 2016 (r295678)
+++ stable/10/Makefile Tue Feb 16 22:37:24 2016 (r295679)
@@ -482,7 +482,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-stable
mailing list