diff options
author | jlam <jlam> | 2005-05-15 21:38:02 +0000 |
---|---|---|
committer | jlam <jlam> | 2005-05-15 21:38:02 +0000 |
commit | 4711dc67bbe010ab7851ef505b372822ecf1b169 (patch) | |
tree | c47369f745bebae0c94e9c47a33e01aa854e5452 /fonts | |
parent | 1a8586851cc8b46e1ecd04932e53fe2b9312070c (diff) | |
download | pkgsrc-4711dc67bbe010ab7851ef505b372822ecf1b169.tar.gz |
Use gzcat instead of "gunzip -c" for simplicity.
Diffstat (limited to 'fonts')
-rw-r--r-- | fonts/XFree86-fontsEncodings/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fonts/XFree86-fontsEncodings/Makefile.common b/fonts/XFree86-fontsEncodings/Makefile.common index c469f4619c9..f67edafec30 100644 --- a/fonts/XFree86-fontsEncodings/Makefile.common +++ b/fonts/XFree86-fontsEncodings/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.6 2005/04/11 21:45:47 tv Exp $ +# $NetBSD: Makefile.common,v 1.7 2005/05/15 21:38:02 jlam Exp $ # # Makefile fragment used by XFree86-fonts* packages. @@ -14,7 +14,7 @@ TOPDIR?= ../../.. post-extract: . if defined(FONTS_MISC) cd ${WRKDIR} && \ - ${GUNZIP_CMD} -c ${DISTDIR}/XFree86-${XF_VER}-src-1.tgz | ${GTAR} -xf - \ + ${GZCAT} ${DISTDIR}/XFree86-${XF_VER}-src-1.tgz | ${GTAR} -xf - \ xc/extras/fonts/arabic24 xc/extras/fonts/ClearlyU; . endif @${SED} \ |