diff options
author | mharo <mharo@FreeBSD.org> | 1999-08-27 22:30:39 +0000 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-08-27 22:30:39 +0000 |
commit | c703665fd61c774a392a6785e6b1c49569072bf1 (patch) | |
tree | fadaf059519c61c85fed9e8be59d5c262720f5d3 /news/nntpcache/Makefile | |
parent | b6234e33d2dcb7767ac29adb112187db9036c665 (diff) | |
download | FreeBSD-ports-c703665fd61c774a392a6785e6b1c49569072bf1.zip FreeBSD-ports-c703665fd61c774a392a6785e6b1c49569072bf1.tar.gz |
echo -> ${ECHO} or ${ECHO_MSG} and in some cases, move echo stuff
to pkg/MESSAGE and use ${CAT} ${PKGMESSAGE}
Diffstat (limited to 'news/nntpcache/Makefile')
-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 5579e59..63855ee 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.10 1998/01/29 04:04:33 itojun Exp $ +# $Id: Makefile,v 1.11 1998/02/01 03:04:11 itojun 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; \ |