From owner-svn-src-stable@FreeBSD.ORG Sat Feb 7 15:21:11 2009 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BFF5D1065673; Sat, 7 Feb 2009 15:21:11 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AE88F8FC1F; Sat, 7 Feb 2009 15:21:11 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n17FLB4S096825; Sat, 7 Feb 2009 15:21:11 GMT (envelope-from bz@svn.freebsd.org) Received: (from bz@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n17FLBAe096824; Sat, 7 Feb 2009 15:21:11 GMT (envelope-from bz@svn.freebsd.org) Message-Id: <200902071521.n17FLBAe096824@svn.freebsd.org> From: "Bjoern A. Zeeb" Date: Sat, 7 Feb 2009 15:21:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r188289 - stable/7 X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Feb 2009 15:21:12 -0000 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}