From 2f769971e76bf9345f71169799741bb1b54a273f Mon Sep 17 00:00:00 2001 From: MORIOKA Tomohiko Date: Tue, 24 Jul 2012 06:48:13 +0900 Subject: [PATCH] (install): Use "gzip -d <" instead of "zcat". --- BDF/JISX0213/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BDF/JISX0213/Makefile.in b/BDF/JISX0213/Makefile.in index 1ea665a..9de9551 100644 --- a/BDF/JISX0213/Makefile.in +++ b/BDF/JISX0213/Makefile.in @@ -61,7 +61,7 @@ install: $(MKDIR) $(JISX0213_PCF_FONTS_DIR) for file in $(BDF_FILES) ; do \ FONT=`basename $${file} .bdf.gz`.pcf.gz ; \ - zcat $${file} | bdftopcf | gzip -9 \ + gzip -d < $${file} | bdftopcf | gzip -9 \ > $(JISX0213_PCF_FONTS_DIR)/$${FONT} ; \ done cd $(JISX0213_PCF_FONTS_DIR) && mkfontdir -- 1.7.10.4