diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-06-22 17:23:30 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-06-22 17:23:30 +0000 |
commit | 8545a2e67fcd00c39e1d49278039599fde0a3c96 (patch) | |
tree | 93c69ec1765552a1e68bc7a639a178521cfdbd2e /misc/bb | |
parent | a05fa76323fffdebea8fa39b9c6b32db8f07f949 (diff) | |
download | FreeBSD-ports-8545a2e67fcd00c39e1d49278039599fde0a3c96.zip FreeBSD-ports-8545a2e67fcd00c39e1d49278039599fde0a3c96.tar.gz |
Replace ${PERL} with ${REINPLACE_CMD}
PR: 39665
Submitted by: Oliver Braun <obraun@informatik.unibw-muenchen.de>
Diffstat (limited to 'misc/bb')
-rw-r--r-- | misc/bb/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/misc/bb/Makefile b/misc/bb/Makefile index b18f2ea..4e72b49 100644 --- a/misc/bb/Makefile +++ b/misc/bb/Makefile @@ -17,12 +17,13 @@ MAINTAINER= ports@FreeBSD.org LIB_DEPENDS= aa.1:${PORTSDIR}/graphics/aalib \ mikmod.2:${PORTSDIR}/audio/libmikmod +USE_REINPLACE= yes GNU_CONFIGURE= yes WRKSRC= ${WRKDIR}/bb-1.3.0 MAN1= bb.1 pre-patch: - ${FIND} ${WRKSRC} -type f | ${XARGS} ${PERL} -pi -e "s@#include +<malloc.h>@#include <stdlib.h>@g" + @${FIND} ${WRKSRC} -type f | ${XARGS} ${REINPLACE_CMD} -E -e "s@#include +<malloc.h>@#include <stdlib.h>@g" post-install: .if !defined(NOPORTDOCS) |