diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-06-24 00:42:16 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-06-24 00:42:16 +0800 |
commit | af461cdf9e887fdcd908f856f83686cdf4b29713 (patch) | |
tree | f9291f63c9da82405262f4d1150c25d17d956be8 /news | |
parent | c7b3e5e2a704c40be2a5b624aa0731d7430a7a03 (diff) | |
download | freebsd-ports-gnome-af461cdf9e887fdcd908f856f83686cdf4b29713.tar.gz freebsd-ports-gnome-af461cdf9e887fdcd908f856f83686cdf4b29713.tar.zst freebsd-ports-gnome-af461cdf9e887fdcd908f856f83686cdf4b29713.zip |
${PERL} -> ${REINPLACE_CMD}
PR: 39702, 39704
Submitted by: Scott Flatman <sf@dsinw.com>
Diffstat (limited to 'news')
-rw-r--r-- | news/dnews/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/news/dnews/Makefile b/news/dnews/Makefile index 863fb4a225e0..2eda67b3e5dc 100644 --- a/news/dnews/Makefile +++ b/news/dnews/Makefile @@ -19,12 +19,13 @@ NO_CDROM= "no answer yet, if we are allowed to put it onto CDROM" RESTRICTED= "only free for non-profit organisations" NO_PACKAGE= "${RESTRICTED}" IS_INTERACTIVE= yes +USE_REINPLACE= yes NO_BUILD= yes post-configure: - @${PERL} -pi -e "s|df -k|/bin/df -k|" ${WRKSRC}/dnews.conf - @${PERL} -pi -e "s|lib/sendmail|sbin/sendmail|" ${WRKSRC}/dnews.conf + @${REINPLACE_CMD} -e "s|df -k|/bin/df -k|" ${WRKSRC}/dnews.conf + @${REINPLACE_CMD} -e "s|lib/sendmail|sbin/sendmail|" ${WRKSRC}/dnews.conf do-install: @( cd ${WRKSRC}; ./dnews_setup ) |