From owner-freebsd-hackers Sat Sep 23 03:51:38 1995 Return-Path: owner-hackers Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA25516 for hackers-outgoing; Sat, 23 Sep 1995 03:51:38 -0700 Received: from aristotle.algonet.se (aristotle.algonet.se [193.12.207.1]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id DAA25507 for ; Sat, 23 Sep 1995 03:51:34 -0700 Received: from sophocles. (mal@sophocles.algonet.se [193.12.207.10]) by aristotle.algonet.se (8.6.9/hdw.1.0) with SMTP id MAA22445 for ; Sat, 23 Sep 1995 12:50:59 +0200 Received: by sophocles. (5.x/SMI-SVR4) id AA25907; Sat, 23 Sep 1995 12:51:22 +0200 Date: Sat, 23 Sep 1995 12:51:22 +0200 From: mal@aristotle.algonet.se (Mats Lofkvist) Message-Id: <9509231051.AA25907@sophocles.> To: freebsd-hackers@FreeBSD.org Subject: [2.1-stable] No def. of GZIPCMD in .../share/doc/usd/1[02].*/Makefile Sender: owner-hackers@FreeBSD.org Precedence: bulk I got the following output from a make in /usr/src (sup'ed today): ===> share/doc/10.exref (cd /usr/src/share/doc/usd/10.exref/../../../../usr.bin/vi/USD.doc/exref; groff -Tps -t -ms -o1- ex.summary) | > summary.ps.gz *** Signal 11 ^^ not much here... The line in /usr/src/share/doc/usd/10.exref/Makefile is (cd ${SRCDIR}; ${ROFF} ${.ALLSRC}) | ${GZIPCMD} > ${.TARGET} Maybe the patch below changes it to the way it was ment to be done? (About the segfault: I did run this via a make in /usr/src twice and got the segfault both times. When going to /usr/obj/share/doc/usd/10.exref and running the line above by cut/paste, I did _not_ get the segfault.) _ Mats Lofkvist mal@algonet.se *** 10.exref/Makefile.org Sun Sep 17 16:43:04 1995 --- 10.exref/Makefile Sat Sep 23 12:40:20 1995 *************** *** 12,19 **** --- 12,21 ---- .if !defined(NODOCCOMPRESS) SFILE= summary.${PRINTER}.gz + GZIPCMD= gzip -c .else SFILE= summary.${PRINTER} + GZIPCMD= cat .endif all: ${DFILE} ${SFILE} *** 12.vi/Makefile.org Sun Sep 17 16:43:05 1995 --- 12.vi/Makefile Sat Sep 23 12:41:10 1995 *************** *** 13,21 **** --- 13,23 ---- .if !defined(NODOCCOMPRESS) SFILE= summary.${PRINTER}.gz VFILE= viapwh.${PRINTER}.gz + GZIPCMD= gzip -c .else SFILE= summary.${PRINTER} VFILE= viapwh.${PRINTER} + GZIPCMD= cat .endif all: ${DFILE} ${SFILE} ${VFILE}