diff options
author | marcus <marcus@FreeBSD.org> | 2003-11-15 18:21:14 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-11-15 18:21:14 +0000 |
commit | 8597e47e4b6614e659f114abd2fcd86aa02b5e3a (patch) | |
tree | abd1b608afdcac786ba3b7af013e69d3b9b8bda6 /editors/gxedit | |
parent | 5383bc5299fdd96d621ca61d863bb4db4615851a (diff) | |
download | FreeBSD-ports-8597e47e4b6614e659f114abd2fcd86aa02b5e3a.zip FreeBSD-ports-8597e47e4b6614e659f114abd2fcd86aa02b5e3a.tar.gz |
unPERLify by using REINPLACE_CMD where appropriate.
PR: 48248
Submitted by: Simon 'portlint' Schubert <corecode@corecode.ath.cx>
Diffstat (limited to 'editors/gxedit')
-rw-r--r-- | editors/gxedit/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editors/gxedit/Makefile b/editors/gxedit/Makefile index 9f5c92b..ac9423c 100644 --- a/editors/gxedit/Makefile +++ b/editors/gxedit/Makefile @@ -16,12 +16,13 @@ MAINTAINER= dom@happygiraffe.net COMMENT= A simple GTK+ editor USE_X_PREFIX= yes +USE_REINPLACE= yes USE_GNOME= gtk12 ALL_TARGET= gxedit post-patch: - @${PERL} -pi -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/config.h + @${REINPLACE_CMD} -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/config.h do-install: ${INSTALL_PROGRAM} ${WRKSRC}/gtk-shell ${PREFIX}/bin |