Date: Wed, 10 Feb 2016 00:26:01 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r295455 - head Message-ID: <201602100026.u1A0Q1RA024264@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602100026.u1A0Q1RA024264>