From 1865592bd58f37599df152902506b3bd4cedbf2d Mon Sep 17 00:00:00 2001 From: bapt Date: Tue, 16 Feb 2016 22:37:24 +0000 Subject: [PATCH] MFC r295455 Fix make universe when running with non POSIX/C locales using a locale sensitive pattern Approved by: re@ (gjb, marius) git-svn-id: svn://svn.freebsd.org/base/stable/10@295679 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f39762dd5..21ba80030 100644 --- a/Makefile +++ b/Makefile @@ -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: -- 2.45.0