diff options
author | mharo <mharo@FreeBSD.org> | 1999-08-28 10:17:34 +0800 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-08-28 10:17:34 +0800 |
commit | 4ea1177771960cdf6cbcee78db1b8afa6d678858 (patch) | |
tree | 58e7abcdb7f57e16ff96f071c49c88244a440598 /news | |
parent | fa1d1e4d83108ff37c97627528c2face622cdd11 (diff) | |
download | freebsd-ports-gnome-4ea1177771960cdf6cbcee78db1b8afa6d678858.tar.gz freebsd-ports-gnome-4ea1177771960cdf6cbcee78db1b8afa6d678858.tar.zst freebsd-ports-gnome-4ea1177771960cdf6cbcee78db1b8afa6d678858.zip |
sed -> ${SED}
Diffstat (limited to 'news')
-rw-r--r-- | news/nntpcache/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/news/nntpcache/Makefile b/news/nntpcache/Makefile index 46f822f27f42..429cfea3aad1 100644 --- a/news/nntpcache/Makefile +++ b/news/nntpcache/Makefile @@ -3,7 +3,7 @@ # Date created: 6 January 1997 # Whom: proff@suburbia.net # -# $Id: Makefile,v 1.12 1999/08/27 22:30:00 mharo Exp $ +# $Id: Makefile,v 1.13 1999/08/28 01:57:50 mharo Exp $ # DISTNAME= nntpcache-2.3.2 @@ -42,7 +42,7 @@ post-install: hardlink-pgp-files: for i in ${PREFIX}/etc/nntpcache/*asc-dist ${PREFIX}/etc/nntpcache/*pgp-dist ; do \ - j=`${ECHO} $$i | sed -e 's/-dist//'`; \ + j=`${ECHO} $$i | ${SED} -e 's/-dist//'`; \ if [ \! -f $$j ]; then \ ${LN} $$i $$j; \ fi; \ |