From owner-svn-ports-all@freebsd.org Wed Mar 29 19:43:08 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7FD4FD24983; Wed, 29 Mar 2017 19:43:08 +0000 (UTC) (envelope-from jm@dieterich.xyz) Received: from www.poelloepaeae.de (www.hatsandcorsets.com [149.210.219.7]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 466827A0; Wed, 29 Mar 2017 19:43:07 +0000 (UTC) (envelope-from jm@dieterich.xyz) Received: from www.poelloepaeae.de (www.poelloepaeae.de [192.168.1.105]) by www.poelloepaeae.de (Postfix) with ESMTP id 13E9650705; Wed, 29 Mar 2017 21:43:05 +0200 (CEST) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Wed, 29 Mar 2017 15:43:05 -0400 From: Johannes M Dieterich To: Jan Beich Cc: Matthew Rezny , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org, owner-ports-committers@freebsd.org Subject: Re: svn commit: r437215 - in head/graphics: gbm libEGL libGL libglapi In-Reply-To: References: <201703291657.v2TGvrpM076369@repo.freebsd.org> Message-ID: <867458dc08dddad8583ba7baf4ea479e@dieterich.xyz> X-Sender: jm@dieterich.xyz User-Agent: Roundcube Webmail/1.2.3 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Mar 2017 19:43:08 -0000 On 2017-03-29 13:51, Jan Beich wrote: > Matthew Rezny writes: > >> - @${REINPLACE_CMD} -e 's|x86_64|amd64|' \ >> + @${REINPLACE_CMD} -e 's|x86_64|amd64|' -e 's|\\S\*//|[:space:]* //|' >> \ > > [:space:] is invalid character class thus treated as a list of > characters. > \S corresponds to [^[:space:]], while \s to [[:space:]]. > > $ man pcrepattern | col -b | fgrep -m1 \\S > \S any character that is not a white space character > > This may break build given -march, etc. are no longer stripped. It certainly used to in the past for me with -march. Has this changed?