From owner-svn-ports-all@FreeBSD.ORG Sun Mar 2 13:14:07 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DEAF573F; Sun, 2 Mar 2014 13:14:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CAADE1178; Sun, 2 Mar 2014 13:14:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s22DE7oY078624; Sun, 2 Mar 2014 13:14:07 GMT (envelope-from tijl@svn.freebsd.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s22DE7UH078623; Sun, 2 Mar 2014 13:14:07 GMT (envelope-from tijl@svn.freebsd.org) Message-Id: <201403021314.s22DE7UH078623@svn.freebsd.org> From: Tijl Coosemans Date: Sun, 2 Mar 2014 13:14:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r346763 - head/Mk/Uses X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 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: Sun, 02 Mar 2014 13:14:07 -0000 Author: tijl Date: Sun Mar 2 13:14:07 2014 New Revision: 346763 URL: http://svnweb.freebsd.org/changeset/ports/346763 QAT: https://qat.redports.org/buildarchive/r346763/ Log: In libtool.mk, let the regexp for DragonFly BSD support match both "freebsd*)" and "freebsd* ", and add "dragonfly*" only if it isn't there already. Approved by: bapt Modified: head/Mk/Uses/libtool.mk Modified: head/Mk/Uses/libtool.mk ============================================================================== --- head/Mk/Uses/libtool.mk Sun Mar 2 13:13:27 2014 (r346762) +++ head/Mk/Uses/libtool.mk Sun Mar 2 13:14:07 2014 (r346763) @@ -19,10 +19,10 @@ _INCLUDE_USES_LIBTOOL_POST_MK= yes patch-libtool: @${FIND} ${WRKDIR} \( -name configure -or -name ltconfig \) \ -type f | ${XARGS} ${REINPLACE_CMD} \ + -e '/dragonfly\*/!s/freebsd\*[ )]/dragonfly* | &/' \ -e '/gcc_dir=\\`/s/gcc /$$CC /' \ -e '/gcc_ver=\\`/s/gcc /$$CC /' \ -e '/link_all_deplibs[0-9A-Z_]*=/s/=unknown/=no/' \ - -e 's,freebsd\*),freebsd\*|dragonfly\*),g' \ -e '/objformat=/s/echo aout/echo elf/' \ -e "/freebsd-elf\\*)/,/;;/ { \ /deplibs_check_method=/s/=.*/=pass_all/; }"