Module Name:    src
Committed By:   dholland
Date:           Sun Dec 22 01:18:28 UTC 2013

Modified Files:
        src/etc: man.conf

Log Message:
Fix _crunch entries, which accidentally got changed from compression
operations to decompression operations nearly two years ago. They are
used only by catman(8), which we don't run any more, but they ought to
be correct anyway.


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 src/etc/man.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/man.conf
diff -u src/etc/man.conf:1.34 src/etc/man.conf:1.35
--- src/etc/man.conf:1.34	Fri Oct 25 08:19:46 2013
+++ src/etc/man.conf	Sun Dec 22 01:18:28 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: man.conf,v 1.34 2013/10/25 08:19:46 mbalmer Exp $
+#	$NetBSD: man.conf,v 1.35 2013/12/22 01:18:28 dholland Exp $
 
 # Sheer, raging paranoia...
 _version	BSD.2
@@ -30,10 +30,10 @@ _build		.tbl.xz		/usr/bin/xzcat %s | /us
 
 _build		.me		/usr/bin/nroff -msafer -me %s 2>/dev/null | cat -s
 
-_crunch		.Z		/usr/bin/zcat > %s
-_crunch		.bz2		/usr/bin/bzcat > %s
-_crunch		.gz		/usr/bin/zcat > %s
-_crunch		.xz		/usr/bin/xzcat > %s
+_crunch		.Z		/usr/bin/compress -c > %s
+_crunch		.bz2		/usr/bin/bzip2 -c > %s
+_crunch		.gz		/usr/bin/gzip -c > %s
+_crunch		.xz		/usr/bin/xz -c > %s
 
 # Sections and their directories.
 # All paths ending in '/' are the equivalent of entries specifying that

Reply via email to