diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2002-11-04 05:46:38 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2002-11-04 05:46:38 +0000 |
commit | 37f2224fa6a14520df830ae1daeba9b877daa347 (patch) | |
tree | 13d3d367b0967ab3adcc2ce528bfe1e770b4d48e /ftp/bftpd | |
parent | - reorder patches (diff) |
PERL -> REINPLACE
And some ports have USE_PERL5=yes now.
Notes
Notes:
svn path=/head/; revision=69436
Diffstat (limited to 'ftp/bftpd')
-rw-r--r-- | ftp/bftpd/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ftp/bftpd/Makefile b/ftp/bftpd/Makefile index 5346fde047c1..bfcf360a02e9 100644 --- a/ftp/bftpd/Makefile +++ b/ftp/bftpd/Makefile @@ -15,15 +15,16 @@ MAINTAINER= petef@FreeBSD.org GNU_CONFIGURE= yes CONFIGURE_ARGS+= --enable-pam USE_GMAKE= yes +USE_REINPLACE= yes MAN8= bftpd.8 post-patch: - @${PERL} -pi -e "s@chmod 644 /var@#chmod 644 /var@g; \ + @${REINPLACE_CMD} -e "s@chmod 644 /var@#chmod 644 /var@g; \ s@touch /var@#touch /var@g; \ s@DESTDIR\)/etc@prefix\)/etc@g; \ s@bftpd.conf @bftpd.conf.sample @g" ${WRKSRC}/Makefile.in - @${PERL} -pi -e "s@-ldl@@" ${WRKSRC}/configure + @${REINPLACE_CMD} -e "s@-ldl@@" ${WRKSRC}/configure @${CP} ${WRKSRC}/bftpd.conf ${WRKSRC}/bftpd.conf.sample post-install: |