diff options
author | obraun <obraun@FreeBSD.org> | 2002-10-27 21:03:50 +0800 |
---|---|---|
committer | obraun <obraun@FreeBSD.org> | 2002-10-27 21:03:50 +0800 |
commit | a47bb24de222d7dde0a5091346771ff7a876e8e5 (patch) | |
tree | 8b535cc8e3c5af08a73698949d471c1fe49b28db /lang/dis | |
parent | d18b87372186dfb225fafc70947306ea515649bc (diff) | |
download | freebsd-ports-gnome-a47bb24de222d7dde0a5091346771ff7a876e8e5.tar.gz freebsd-ports-gnome-a47bb24de222d7dde0a5091346771ff7a876e8e5.tar.zst freebsd-ports-gnome-a47bb24de222d7dde0a5091346771ff7a876e8e5.zip |
PERL -> REINPLACE
PR: 44524
Submitted by: maintainer
Diffstat (limited to 'lang/dis')
-rw-r--r-- | lang/dis/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lang/dis/Makefile b/lang/dis/Makefile index ab208c5b4e21..33e9d8e2283e 100644 --- a/lang/dis/Makefile +++ b/lang/dis/Makefile @@ -13,8 +13,10 @@ DISTNAME= dis MAINTAINER= simond@irrelevant.org +USE_REINPLACE= yes + post-patch: - ${PERL} -pi -e "s|<malloc.h>|<stdlib.h>|g" ${WRKSRC}/dis.c + @${REINPLACE_CMD} -e 's|<malloc.h>|<stdlib.h>|g' ${WRKSRC}/dis.c do-build: ${CC} ${CFLAGS} ${WRKSRC}/dis.c -o ${WRKSRC}/dis |