From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 05:34:46 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CC8EEDC1; Tue, 21 Jan 2014 05:34:46 +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 B903112DA; Tue, 21 Jan 2014 05:34:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L5YklR091950; Tue, 21 Jan 2014 05:34:46 GMT (envelope-from gerald@svn.freebsd.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L5YkCX091948; Tue, 21 Jan 2014 05:34:46 GMT (envelope-from gerald@svn.freebsd.org) Message-Id: <201401210534.s0L5YkCX091948@svn.freebsd.org> From: Gerald Pfeifer Date: Tue, 21 Jan 2014 05:34:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340551 - head/math/petsc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Jan 2014 05:34:46 -0000 Author: gerald Date: Tue Jan 21 05:34:46 2014 New Revision: 340551 URL: http://svnweb.freebsd.org/changeset/ports/340551 QAT: https://qat.redports.org/buildarchive/r340551/ Log: Pass full LDFLAGS to configure script. This fixes the build with newer versions of GCC, allowing for an update of lang/gcc (and it's the right thing anyway). PR: 182136 Submitted by: Christoph Moench-Tegeder Approved by: maintainer timeout Modified: head/math/petsc/Makefile Modified: head/math/petsc/Makefile ============================================================================== --- head/math/petsc/Makefile Tue Jan 21 05:20:23 2014 (r340550) +++ head/math/petsc/Makefile Tue Jan 21 05:34:46 2014 (r340551) @@ -25,7 +25,8 @@ CONFIGURE_ENV= PETSC_ARCH=${TARGET} \ CONFIGURE_ARGS= --prefix=${PREFIX}/${PFX} --COPTFLAGS="${CFLAGS}" \ --CXXOPTFLAGS="${CXXFLAGS}" --FOPTFLAGS="${FFLAGS}" \ --with-shared=1 --with-cc=${CC} --with-fc=${FC} \ - --CPPFLAGS="-I${LOCALBASE}/include" --LDFLAGS=${PTHREAD_LIBS} + --CPPFLAGS="-I${LOCALBASE}/include" \ + --LDFLAGS="${PTHREAD_LIBS} ${LDFLAGS}" ALL_TARGET= all MAKEFILE= makefile MAKE_ENV= PETSC_DIR=${WRKSRC}