From owner-svn-ports-all@FreeBSD.ORG Fri Mar 7 13:40:56 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 3C758FEA; Fri, 7 Mar 2014 13:40:56 +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 29C22FDA; Fri, 7 Mar 2014 13:40:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s27Deuxi062073; Fri, 7 Mar 2014 13:40:56 GMT (envelope-from tijl@svn.freebsd.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s27DeuxB062072; Fri, 7 Mar 2014 13:40:56 GMT (envelope-from tijl@svn.freebsd.org) Message-Id: <201403071340.s27DeuxB062072@svn.freebsd.org> From: Tijl Coosemans Date: Fri, 7 Mar 2014 13:40:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r347381 - head/math/fftw 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: Fri, 07 Mar 2014 13:40:56 -0000 Author: tijl Date: Fri Mar 7 13:40:55 2014 New Revision: 347381 URL: http://svnweb.freebsd.org/changeset/ports/347381 QAT: https://qat.redports.org/buildarchive/r347381/ Log: Patch makefiles so libtool passes -B${LOCALBASE}/bin to the compiler in link mode. Normally USES=libtool deals with this, but the libtool script in this port is too old to patch easily. PR: ports/187274 Modified: head/math/fftw/Makefile Modified: head/math/fftw/Makefile ============================================================================== --- head/math/fftw/Makefile Fri Mar 7 12:53:40 2014 (r347380) +++ head/math/fftw/Makefile Fri Mar 7 13:40:55 2014 (r347381) @@ -48,6 +48,9 @@ CONFIGURE_ARGS+= --enable-i386-hacks post-patch: @${REINPLACE_CMD} -e '/^SUBDIRS/s|doc | |' ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e '/^LINK/s|$$(CCLD)|& -Wc,-B${LOCALBASE}/bin|' \ + ${WRKSRC}/fftw/Makefile.in ${WRKSRC}/mpi/Makefile.in \ + ${WRKSRC}/rfftw/Makefile.in ${WRKSRC}/threads/Makefile.in post-build: .if ${FFTW_FLAVOR}=="default"