diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-06-22 00:20:23 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-06-22 00:20:23 +0800 |
commit | c33ba7a93beedb65065750f6fa125277fa1f1b51 (patch) | |
tree | 4b05f56b4bd74a7dbee4fca4ad8a61f8aa5e5bfe /lang/sxm/Makefile | |
parent | 47ed91c6adc3291426fa5760230286c31b9dc8be (diff) | |
download | freebsd-ports-gnome-c33ba7a93beedb65065750f6fa125277fa1f1b51.tar.gz freebsd-ports-gnome-c33ba7a93beedb65065750f6fa125277fa1f1b51.tar.zst freebsd-ports-gnome-c33ba7a93beedb65065750f6fa125277fa1f1b51.zip |
Replace ${PERL} with ${REINPLACE_CMD}
PR: 39605
Submitted by: Oliver Braun <obraun@informatik.unibw-muenchen.de>
Diffstat (limited to 'lang/sxm/Makefile')
-rw-r--r-- | lang/sxm/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lang/sxm/Makefile b/lang/sxm/Makefile index e7ccfb17b541..00d9997d4b80 100644 --- a/lang/sxm/Makefile +++ b/lang/sxm/Makefile @@ -13,13 +13,14 @@ MASTER_SITES= http://www.malgil.com/sxm/ MAINTAINER= ports@FreeBSD.org +USE_REINPLACE= yes USE_GMAKE= yes ALL_TARGET= all image Formlist MAN1= sxm.1 sxi.1 post-patch: - @${PERL} -pi -e "s|/usr/local|${PREFIX}|g ; \ + @${REINPLACE_CMD} -e "s|/usr/local|${PREFIX}|g ; \ s,^CC,#CC,g" ${WRKSRC}/Makefile .include <bsd.port.mk> |