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/tamago | |
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/tamago')
-rw-r--r-- | editors/tamago/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editors/tamago/Makefile b/editors/tamago/Makefile index 374bfd112670..e642ee325fe4 100644 --- a/editors/tamago/Makefile +++ b/editors/tamago/Makefile @@ -22,6 +22,7 @@ MAINTAINER= ports@FreeBSD.org BUILD_DEPENDS= emacs-${EMACS_VER}:${PORTSDIR}/editors/${EMACS_PORT_NAME} RUN_DEPENDS= emacs-${EMACS_VER}:${PORTSDIR}/editors/${EMACS_PORT_NAME} +USE_REINPLACE= yes USE_GMAKE= yes GNU_CONFIGURE= yes @@ -31,7 +32,7 @@ ELISPDIR= ${PREFIX}/${EMACS_LIBDIR_WITH_VER}/site-lisp PLIST_SUB= ELISPDIR="${EMACS_LIBDIR_WITH_VER}/site-lisp" pre-configure: - @${PERL} -pi -e 's|emacs/site-lisp|${EMACS_NAME}/${EMACS_VER}/site-lisp|g' \ + @${REINPLACE_CMD} -e 's|emacs/site-lisp|${EMACS_NAME}/${EMACS_VER}/site-lisp|g' \ ${WRKSRC}/configure .include <bsd.port.mk> |