From owner-svn-src-all@FreeBSD.ORG Tue Oct 4 17:11:39 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1A5421065670; Tue, 4 Oct 2011 17:11:39 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 09FF28FC1A; Tue, 4 Oct 2011 17:11:39 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p94HBcpF070644; Tue, 4 Oct 2011 17:11:38 GMT (envelope-from marcel@svn.freebsd.org) Received: (from marcel@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p94HBca3070642; Tue, 4 Oct 2011 17:11:38 GMT (envelope-from marcel@svn.freebsd.org) Message-Id: <201110041711.p94HBca3070642@svn.freebsd.org> From: Marcel Moolenaar Date: Tue, 4 Oct 2011 17:11:38 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r226013 - head/sys/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Oct 2011 17:11:39 -0000 Author: marcel Date: Tue Oct 4 17:11:38 2011 New Revision: 226013 URL: http://svn.freebsd.org/changeset/base/226013 Log: Match the files directive and all the ways to add or subtract options and makeoptions by being a little smarter about REs. Modified: head/sys/conf/makeLINT.sed Modified: head/sys/conf/makeLINT.sed ============================================================================== --- head/sys/conf/makeLINT.sed Tue Oct 4 17:09:10 2011 (r226012) +++ head/sys/conf/makeLINT.sed Tue Oct 4 17:11:38 2011 (r226013) @@ -1,7 +1,7 @@ #!/usr/bin/sed -E -n -f # $FreeBSD$ -/^(machine|ident|device|nodevice|makeoptions|nomakeoption|options|option|nooption|profile|cpu|maxusers)[[:space:]]/ { +/^(machine|files|ident|(no)?device|(no)?makeoption(s)?|(no)?option(s)?|profile|cpu|maxusers)[[:space:]]/ { s/[[:space:]]*#.*$// p }