diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2017-12-20 15:30:55 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2017-12-20 15:30:55 +0000 |
commit | 75a24155630836a3e7379908d0d0c052705b0413 (patch) | |
tree | 6cdc0be0cd56b2f75ea7862f6b61b9be3909a8b5 /cad | |
parent | 020660f994e9fdb76be22a85cde9fdddb91d9eea (diff) |
Cross-builds under qemu may have pathname information encoded in CXX.
Fix some regexes to compensate.
Approved by: portmgr (tier-2 blanket)
Notes
Notes:
svn path=/head/; revision=456836
Diffstat (limited to 'cad')
-rw-r--r-- | cad/calculix/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cad/calculix/Makefile b/cad/calculix/Makefile index 67e735e91e8e..f44da9aabf55 100644 --- a/cad/calculix/Makefile +++ b/cad/calculix/Makefile @@ -14,10 +14,10 @@ COMMENT= Three-Dimensional Structural Finite Element Program LICENSE= GPLv2 -BROKEN_FreeBSD_10= Does not build with clang on FreeBSD 10, causes segfaults when built with gcc - RUN_DEPENDS= ccx:cad/calculix-ccx +BROKEN_FreeBSD_10= Does not build with clang on FreeBSD 10, causes segfaults when built with gcc + DIST_SOURCES= cgx_${PORTVERSION}.all${EXTRACT_SUFX} DIST_HTM= cgx_${PORTVERSION}.htm${EXTRACT_SUFX} DIST_PDF= cgx_${PORTVERSION}.pdf @@ -57,7 +57,7 @@ FFLAGS+= -fpic .endif pre-build: - @${REINPLACE_CMD} -e 's/c++/${CXX}/g;' \ + @${REINPLACE_CMD} -e 's!c++!${CXX}!g;' \ ${WRKSRC}/libSNL/src/makefile @${REINPLACE_CMD} -e 's+%%DOCSDIR%%+${DOCSDIR}+g; \ s+"firefox"+"${BROWSER}"+ ; \ |