diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-07-08 10:41:30 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-07-08 10:41:30 +0000 |
commit | 2730c8a3dcd82845271c9dbb832f982bbacff7ab (patch) | |
tree | 1642e533cdc6183365ccba20544974f74946044a /graphics/xfractint | |
parent | Fix the condition in the userforward director that is intended to (diff) |
PERL -> REINPLACE_CMD
PR: 39938
Submitted by: Oliver Braun <obraun@informatik.unibw-muenchen.de>
Diffstat (limited to 'graphics/xfractint')
-rw-r--r-- | graphics/xfractint/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/xfractint/Makefile b/graphics/xfractint/Makefile index cb7ffacefbc2..8d8c9e4e51ab 100644 --- a/graphics/xfractint/Makefile +++ b/graphics/xfractint/Makefile @@ -14,13 +14,14 @@ DISTNAME= xfrac310 MAINTAINER= ports@FreeBSD.org +USE_REINPLACE= yes USE_ZIP= yes USE_XLIB= yes NO_WRKSUBDIR= yes MAN1= xfractint.1 pre-patch: - @${FIND} ${WRKSRC} -name "*.c" | ${XARGS} ${PERL} -pi -e \ + @${FIND} ${WRKSRC} -name "*.c" | ${XARGS} ${REINPLACE_CMD} -e \ 's|malloc\.h|stdlib.h|' .include <bsd.port.mk> |