svn commit: r295455 - head

NGie Cooper yaneurabeya at gmail.com
Wed Feb 10 07:01:09 UTC 2016


> On Feb 9, 2016, at 16:26, Baptiste Daroussin <bapt at FreeBSD.org> wrote:
> 
> 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

Please. Please MFC this.

> 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