Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Jan 2020 17:09:01 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r523629 - in head: cad/pdnmesh math/metis math/parmetis
Message-ID:  <202001201709.00KH91g0081490@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Mon Jan 20 17:09:01 2020
New Revision: 523629
URL: https://svnweb.freebsd.org/changeset/ports/523629

Log:
  Fix bad invocation of REINPLACE_CMD
  
  Missing space before the -e argument
  
  Reported by:	Antonio Huete Jimenez <tuxillo@quantumachine.net> (dragonfly)

Modified:
  head/cad/pdnmesh/Makefile
  head/math/metis/Makefile
  head/math/parmetis/Makefile

Modified: head/cad/pdnmesh/Makefile
==============================================================================
--- head/cad/pdnmesh/Makefile	Mon Jan 20 16:30:37 2020	(r523628)
+++ head/cad/pdnmesh/Makefile	Mon Jan 20 17:09:01 2020	(r523629)
@@ -31,7 +31,7 @@ ATLAS_USES_OFF=		blaslapack
 ATLAS_CONFIGURE_OFF=--with-blas=blas --with-lapack=lapack
 
 post-patch:
-	@${REINPLACE_CMD}-e \
+	@${REINPLACE_CMD} -e \
 		'/^SUBDIRS/s|doc|| ; \
 		 s|^pkgdata_DATA|#pkgdata_DATA|' ${WRKSRC}/Makefile.in
 

Modified: head/math/metis/Makefile
==============================================================================
--- head/math/metis/Makefile	Mon Jan 20 16:30:37 2020	(r523628)
+++ head/math/metis/Makefile	Mon Jan 20 17:09:01 2020	(r523629)
@@ -58,7 +58,7 @@ pre-configure:
 	@${REINPLACE_CMD} -e "\|/home/karypis/|d" \
 	${WRKSRC}/programs/CMakeLists.txt
 .if ${ARCH:M*64*}
-	@${REINPLACE_CMD}-e \
+	@${REINPLACE_CMD} -e \
 		's|IDXTYPEWIDTH 32|IDXTYPEWIDTH 64|' \
 		${WRKSRC}/include/metis.h
 .endif

Modified: head/math/parmetis/Makefile
==============================================================================
--- head/math/parmetis/Makefile	Mon Jan 20 16:30:37 2020	(r523628)
+++ head/math/parmetis/Makefile	Mon Jan 20 17:09:01 2020	(r523629)
@@ -47,7 +47,7 @@ pre-configure:
 	@${REINPLACE_CMD} -e \
 		's|"-O3"|""|' ${WRKSRC}/metis/GKlib/GKlibSystem.cmake
 .if ((${ARCH}=="amd64") || (${ARCH}=="aarch64") || (${ARCH}=="sparc64") || (${ARCH}=="ppc64") || (${ARCH}=="ia64"))
-	@${REINPLACE_CMD}-e \
+	@${REINPLACE_CMD} -e \
 		's|IDXTYPEWIDTH 32|IDXTYPEWIDTH 64|' \
 		${WRKSRC}/metis/include/metis.h
 .endif



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