Date: Tue, 16 Feb 2016 23:01:19 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r295680 - stable/9 Message-ID: <201602162301.u1GN1JI0079347@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Tue Feb 16 23:01:19 2016 New Revision: 295680 URL: https://svnweb.freebsd.org/changeset/base/295680 Log: FC r295455 Fix make universe when running with non POSIX/C locales using a locale sensitive pattern Modified: stable/9/Makefile (contents, props changed) Directory Properties: stable/9/ (props changed) Modified: stable/9/Makefile ============================================================================== --- stable/9/Makefile Tue Feb 16 22:37:24 2016 (r295679) +++ stable/9/Makefile Tue Feb 16 23:01:19 2016 (r295680) @@ -422,7 +422,8 @@ universe_kernels: universe_kernconfs TARGET!= uname -m .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 universe_kernconfs: .for kernel in ${KERNCONFS}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602162301.u1GN1JI0079347>