svn commit: r523629 - in head: cad/pdnmesh math/metis math/parmetis
Baptiste Daroussin
bapt at FreeBSD.org
Mon Jan 20 17:09:02 UTC 2020
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 at 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
More information about the svn-ports-all
mailing list