From owner-svn-ports-head@FreeBSD.ORG Sun Nov 3 18:34:46 2013 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 ESMTP id BE7B24F6; Sun, 3 Nov 2013 18:34:46 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) 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 AA4262BEC; Sun, 3 Nov 2013 18: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 rA3IYkJE087228; Sun, 3 Nov 2013 18:34:46 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA3IYkJf087227; Sun, 3 Nov 2013 18:34:46 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201311031834.rA3IYkJf087227@svn.freebsd.org> From: Raphael Kubo da Costa Date: Sun, 3 Nov 2013 18:34:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332638 - head/benchmarks/imb 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.14 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: Sun, 03 Nov 2013 18:34:46 -0000 Author: rakuco Date: Sun Nov 3 18:34:46 2013 New Revision: 332638 URL: http://svnweb.freebsd.org/changeset/ports/332638 Log: Allow the port to go a bit further in the build process. Instead of complaining that `gmake' does not exist, the port fails a bit later and at least starts building. The previous failure was caused because we used USES=gmake but then re-set BUILD_DEPENDS and MAKE_ENV a few lines below in the Makefile. Modified: head/benchmarks/imb/Makefile Modified: head/benchmarks/imb/Makefile ============================================================================== --- head/benchmarks/imb/Makefile Sun Nov 3 18:17:33 2013 (r332637) +++ head/benchmarks/imb/Makefile Sun Nov 3 18:34:46 2013 (r332638) @@ -39,13 +39,13 @@ WITH_OPENMPI= yes .endif .if defined(WITH_OPENMPI) -BUILD_DEPENDS= ${LOCALBASE}/mpi/openmpi/lib/libmpi.so:${PORTSDIR}/net/openmpi -RUN_DEPENDS= ${LOCALBASE}/mpi/openmpi/bin/mpirun:${PORTSDIR}/net/openmpi -MAKE_ENV= MPI_HOME=${LOCALBASE}/mpi/openmpi +BUILD_DEPENDS+= ${LOCALBASE}/mpi/openmpi/lib/libmpi.so:${PORTSDIR}/net/openmpi +RUN_DEPENDS+= ${LOCALBASE}/mpi/openmpi/bin/mpirun:${PORTSDIR}/net/openmpi +MAKE_ENV+= MPI_HOME=${LOCALBASE}/mpi/openmpi .else -BUILD_DEPENDS= ${LOCALBASE}/bin/mpicc:${PORTSDIR}/net/mpich2 -RUN_DEPENDS= ${LOCALBASE}/bin/mpirun:${PORTSDIR}/net/mpich2 -MAKE_ENV= MPI_HOME=${LOCALBASE} +BUILD_DEPENDS+= ${LOCALBASE}/bin/mpicc:${PORTSDIR}/net/mpich2 +RUN_DEPENDS+= ${LOCALBASE}/bin/mpirun:${PORTSDIR}/net/mpich2 +MAKE_ENV+= MPI_HOME=${LOCALBASE} .endif do-install: