diff options
author | zuntum <zuntum@pkgsrc.org> | 2001-03-31 11:24:53 +0000 |
---|---|---|
committer | zuntum <zuntum@pkgsrc.org> | 2001-03-31 11:24:53 +0000 |
commit | b0b0296f12b4246801d9f48c8f79a6e285bad181 (patch) | |
tree | a5fa1372fc498e95ca42673326caef3b87597b88 /misc/colortail | |
parent | ef5ca266353e502f307b04e9b0e63c98164396d7 (diff) | |
download | pkgsrc-b0b0296f12b4246801d9f48c8f79a6e285bad181.tar.gz |
SED substitution in one line instead of three
Diffstat (limited to 'misc/colortail')
-rw-r--r-- | misc/colortail/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/misc/colortail/Makefile b/misc/colortail/Makefile index c3adaa01892..e3af176f803 100644 --- a/misc/colortail/Makefile +++ b/misc/colortail/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2001/03/16 20:53:03 zuntum Exp $ +# $NetBSD: Makefile,v 1.4 2001/03/31 11:24:53 zuntum Exp $ # FreeBSD Id: ports/misc/colortail/Makefile,v 1.10 2000/06/28 17:20:27 alex Exp DISTNAME= colortail-0.3.0 @@ -18,8 +18,6 @@ post-install: cd ${WRKSRC}/example-conf/ && \ ${INSTALL_DATA} conf.kernel conf.messages conf.secure \ conf.xferlog conf.daemon ${PREFIX}/share/examples/colortail - ${SED} \ - -e 's|@PREFIX@|${PREFIX}|' \ - <${PKGDIR}/DESCR >${DESCR_SRC} + ${SED} 's,@PREFIX@,${PREFIX},' ${PKGDIR}/DESCR > ${DESCR_SRC} .include "../../mk/bsd.pkg.mk" |