svn commit: r188289 - stable/7

Bjoern A. Zeeb bz at FreeBSD.org
Sat Feb 7 07:21:12 PST 2009


Author: bz
Date: Sat Feb  7 15:21:11 2009
New Revision: 188289
URL: http://svn.freebsd.org/changeset/base/188289

Log:
  MFC: r186519
  
    Permit digits in the kernel config file names for `make universe'.
    This catches a few more kernel config for various architectures
    and permits having local configs named like NOINET6.

Modified:
  stable/7/Makefile   (contents, props changed)

Modified: stable/7/Makefile
==============================================================================
--- stable/7/Makefile	Sat Feb  7 14:55:29 2009	(r188288)
+++ stable/7/Makefile	Sat Feb  7 15:21:11 2009	(r188289)
@@ -279,7 +279,7 @@ universe_prologue:
 	@echo "--------------------------------------------------------------"
 .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}


More information about the svn-src-stable-7 mailing list