diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-06-21 23:52:35 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-06-21 23:52:35 +0800 |
commit | 41375a7fa3ba02e9cf4d8448e52eb7e6aaf3a4ed (patch) | |
tree | 9b2d8b8ded963952c33061446db191c200e97854 /editors/uemacs | |
parent | c0abd785464496b58bf62d2eee5e0dfa620721cd (diff) | |
download | freebsd-ports-gnome-41375a7fa3ba02e9cf4d8448e52eb7e6aaf3a4ed.tar.gz freebsd-ports-gnome-41375a7fa3ba02e9cf4d8448e52eb7e6aaf3a4ed.tar.zst freebsd-ports-gnome-41375a7fa3ba02e9cf4d8448e52eb7e6aaf3a4ed.zip |
Replace ${PERL} with ${REINPLACE_CMD}
PR: 39591
Submitted by: Oliver Braun <obraun@informatik.unibw-muenchen.de>
Diffstat (limited to 'editors/uemacs')
-rw-r--r-- | editors/uemacs/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editors/uemacs/Makefile b/editors/uemacs/Makefile index 720bd41649f0..f9658e0ab54f 100644 --- a/editors/uemacs/Makefile +++ b/editors/uemacs/Makefile @@ -13,11 +13,12 @@ DISTNAME= ue400dev MAINTAINER= ports@FreeBSD.org +USE_REINPLACE= yes NO_WRKSUBDIR= yes USE_ZIP= yes EXTRACT_BEFORE_ARGS= -Laq post-patch: - @${PERL} -pi -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/src/*.c + @${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/src/*.c .include <bsd.port.mk> |