diff options
author | grant <grant@pkgsrc.org> | 2004-03-31 10:23:59 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-03-31 10:23:59 +0000 |
commit | 6bb69319f6275a2414e9143706b85948ef943950 (patch) | |
tree | f4716b1736df06760f4ef27e3f9643c8be24eabf /fonts | |
parent | ec026a58108bc93e0e32469a2b425d0dc98edc12 (diff) | |
download | pkgsrc-6bb69319f6275a2414e9143706b85948ef943950.tar.gz |
replace use of GUNZIP_CMD with GZCAT. minor whitespace tweak.
Diffstat (limited to 'fonts')
-rw-r--r-- | fonts/jisx0213fonts/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fonts/jisx0213fonts/Makefile b/fonts/jisx0213fonts/Makefile index faa210e82dd..207f1aeb3a2 100644 --- a/fonts/jisx0213fonts/Makefile +++ b/fonts/jisx0213fonts/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2004/03/31 06:15:59 taca Exp $ +# $NetBSD: Makefile,v 1.8 2004/03/31 10:23:59 grant Exp $ # DISTNAME= jisx0213fonts-0.0 @@ -16,11 +16,11 @@ FONTS= K14-1 K14-2 jiskan16-2000-1 jiskan16-2000-2 FONTDIR= ${PREFIX}/lib/X11/fonts/local FONTS_X11_DIRS= ${FONTDIR} -WRKSRC= ${WRKDIR} +WRKSRC= ${WRKDIR} do-extract: @for f in ${FONTS}; do \ - ${GUNZIP_CMD} -c ${DISTDIR}/$${f}.bdf.gz >${WRKSRC}/$${f}.bdf; \ + ${GZCAT} ${DISTDIR}/$${f}.bdf.gz >${WRKSRC}/$${f}.bdf; \ done do-build: |