Date: Sat, 27 Dec 2008 15:07:51 +0000 (UTC) From: "Bjoern A. Zeeb" <bz@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r186519 - head Message-ID: <200812271507.mBRF7pkv074681@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bz Date: Sat Dec 27 15:07:51 2008 New Revision: 186519 URL: http://svn.freebsd.org/changeset/base/186519 Log: Permit digits at the beginning and end of kernel config file names for `make universe'. This catches a few more arm and, once enabled, mips configs and permits having local configs named like NOINET6. Reviewed by: phk MFC after: 4 weeks Modified: head/Makefile Modified: head/Makefile ============================================================================== --- head/Makefile Sat Dec 27 14:34:33 2008 (r186518) +++ head/Makefile Sat Dec 27 15:07:51 2008 (r186519) @@ -298,7 +298,7 @@ universe_prologue: .endif .for target in ${TARGETS} KERNCONFS!= cd ${.CURDIR}/sys/${target}/conf && \ - find [A-Z]*[A-Z] -type f -maxdepth 0 \ + find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \ ! -name DEFAULTS ! -name LINT KERNCONFS:= ${KERNCONFS:S/^NOTES$/LINT/} universe: universe_${target}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200812271507.mBRF7pkv074681>