Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 3 Nov 2013 18:34:46 +0000 (UTC)
From:      Raphael Kubo da Costa <rakuco@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r332638 - head/benchmarks/imb
Message-ID:  <201311031834.rA3IYkJf087227@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311031834.rA3IYkJf087227>