diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-07-08 18:41:30 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-07-08 18:41:30 +0800 |
commit | 27b58e05583dbd0dbed960cf162e599ebc0f227b (patch) | |
tree | 08d4d418aed90a1f7e8eb25819d284dce8d35a8b /graphics/xfractint/Makefile | |
parent | e5f65fe9c160b78b54514fe1bebfa37c1259f7c8 (diff) | |
download | freebsd-ports-gnome-27b58e05583dbd0dbed960cf162e599ebc0f227b.tar.gz freebsd-ports-gnome-27b58e05583dbd0dbed960cf162e599ebc0f227b.tar.zst freebsd-ports-gnome-27b58e05583dbd0dbed960cf162e599ebc0f227b.zip |
PERL -> REINPLACE_CMD
PR: 39938
Submitted by: Oliver Braun <obraun@informatik.unibw-muenchen.de>
Diffstat (limited to 'graphics/xfractint/Makefile')
-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> |