diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2015-08-05 00:51:20 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2015-08-05 00:51:20 +0800 |
commit | c476390818e9e3d9d9b1a1a363ecc0160570674e (patch) | |
tree | 3de70da79157fef8ce75de4f249f32a67be9c975 /textproc/p5-XML-DifferenceMarkup | |
parent | b07127bd8e8c140d202e5f259a6d33ec88d7e5db (diff) | |
download | freebsd-ports-gnome-c476390818e9e3d9d9b1a1a363ecc0160570674e.tar.gz freebsd-ports-gnome-c476390818e9e3d9d9b1a1a363ecc0160570674e.tar.zst freebsd-ports-gnome-c476390818e9e3d9d9b1a1a363ecc0160570674e.zip |
- Don't use / in sed regexps to allow paths, unbreaking cross-builds
Approved by: portmgr blanket
Diffstat (limited to 'textproc/p5-XML-DifferenceMarkup')
-rw-r--r-- | textproc/p5-XML-DifferenceMarkup/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textproc/p5-XML-DifferenceMarkup/Makefile b/textproc/p5-XML-DifferenceMarkup/Makefile index 640703a88f47..3c421fba76ad 100644 --- a/textproc/p5-XML-DifferenceMarkup/Makefile +++ b/textproc/p5-XML-DifferenceMarkup/Makefile @@ -21,7 +21,7 @@ USES= perl5 USE_PERL5= configure post-patch: - @${REINPLACE_CMD} '/^\$$CC/s/g++/${CXX}/; s|/usr/local|${LOCALBASE}|g' \ + @${REINPLACE_CMD} '/^\$$CC/s|g++|${CXX}|; s|/usr/local|${LOCALBASE}|g' \ ${WRKSRC}/Makefile.PL # Don't pass any argument to Makefile.PL, it messes up lib detection. |