diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-06-21 15:52:35 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-06-21 15:52:35 +0000 |
commit | 4fcd623a911ebff1fb406f959932040af7ed40b2 (patch) | |
tree | 3179f0030b56361bd63473d24ab0af7ddce20dbf /editors/tamago-emacs21 | |
parent | 15b35ffaea08acdf8c14ea61767dbb931ac1b83f (diff) | |
download | freebsd-ports-4fcd623a911ebff1fb406f959932040af7ed40b2.zip |
Replace ${PERL} with ${REINPLACE_CMD}
PR: 39591
Submitted by: Oliver Braun <obraun@informatik.unibw-muenchen.de>
Diffstat (limited to 'editors/tamago-emacs21')
-rw-r--r-- | editors/tamago-emacs21/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editors/tamago-emacs21/Makefile b/editors/tamago-emacs21/Makefile index 374bfd112670..e642ee325fe4 100644 --- a/editors/tamago-emacs21/Makefile +++ b/editors/tamago-emacs21/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> |