diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-06-23 01:06:27 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-06-23 01:06:27 +0800 |
commit | c147389ae60aad271c5b1f86f9ba1368e91eb78b (patch) | |
tree | c30052169cd8bb432a4dc0eb35650e1f900ebcfa /math/GiNaC | |
parent | 2789058898bc9e5f45b1cf4bd04aaffebbdd1626 (diff) | |
download | freebsd-ports-gnome-c147389ae60aad271c5b1f86f9ba1368e91eb78b.tar.gz freebsd-ports-gnome-c147389ae60aad271c5b1f86f9ba1368e91eb78b.tar.zst freebsd-ports-gnome-c147389ae60aad271c5b1f86f9ba1368e91eb78b.zip |
Replace ${PERL} with ${REINPLACE_CMD}
PR: 39656
Submitted by: Oliver Braun <obraun@informatik.unibw-muenchen.de>
Diffstat (limited to 'math/GiNaC')
-rw-r--r-- | math/GiNaC/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/math/GiNaC/Makefile b/math/GiNaC/Makefile index 3b549c951b9b..1cbb2f0a770d 100644 --- a/math/GiNaC/Makefile +++ b/math/GiNaC/Makefile @@ -17,6 +17,7 @@ MAINTAINER= ports@FreeBSD.org LIB_DEPENDS= cln.2:${PORTSDIR}/math/cln +USE_REINPLACE= yes USE_BZIP2= yes USE_NEWGCC= yes USE_GMAKE= yes @@ -34,10 +35,10 @@ post-extract: post-patch: .for file in configure ginac/numeric.cpp ginac/tostring.h - @${PERL} -pi -e 's|sstream|strstream|g ; \ + @${REINPLACE_CMD} -e 's|sstream|strstream|g ; \ s|stringstream|strstream|g' ${WRKSRC}/${file} .endfor - @${PERL} -pi -e 's|-release \$$\(LT_RELEASE\)||g' \ + @${REINPLACE_CMD} -e 's|-release \$$(LT_RELEASE)||g' \ ${WRKSRC}/ginac/Makefile.in .include <bsd.port.mk> |