From owner-freebsd-hackers Wed Jan 18 12:03:05 1995 Return-Path: hackers-owner Received: (from root@localhost) by freefall.cdrom.com (8.6.9/8.6.6) id MAA15322 for hackers-outgoing; Wed, 18 Jan 1995 12:03:05 -0800 Received: from ibp.ibp.fr (ibp.ibp.fr [132.227.60.30]) by freefall.cdrom.com (8.6.9/8.6.6) with ESMTP id MAA15307 for ; Wed, 18 Jan 1995 12:03:01 -0800 Received: from blaise.ibp.fr (blaise.ibp.fr [132.227.60.1]) by ibp.ibp.fr (8.6.8/jtpda-5.0) with SMTP id VAA18146 for ; Wed, 18 Jan 1995 21:03:55 +0100 Received: by blaise.ibp.fr (4.1/SMI-4.1) id AA15087; Wed, 18 Jan 95 21:03:57 +0100 Received: (from roberto@localhost) by keltia.frmug.fr.net (8.6.9/keltia-uucp-1.21) id UAA04127 for freebsd-hackers@FreeBSD.ORG; Wed, 18 Jan 1995 20:47:50 +0100 From: Ollivier Robert Message-Id: <199501181947.UAA04127@keltia.frmug.fr.net> Subject: Problem with new groff To: freebsd-hackers@FreeBSD.org (FreeBSD Hackers' list) Date: Wed, 18 Jan 1995 20:47:49 +0100 (MET) Reply-To: roberto@blaise.ibp.fr (Ollivier Robert) X-Operating-System: FreeBSD 2.1.0-Development ctm#287 X-Mailer: ELM [version 2.4 PL24] Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: hackers-owner@FreeBSD.org Precedence: bulk On a 21-current, there is no /usr/share/tmac/mdoc directory and ``make install'' thus fails. In the troffrc, three have crept in and groff outputs warnings for that. The following patch should fix it. Index: Makefile =================================================================== RCS file: /spare/FreeBSD-current/src/gnu/usr.bin/ngroff/tmac/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- 1.4 1995/01/17 19:05:12 +++ Makefile 1995/01/18 19:51:54 @@ -37,6 +37,9 @@ for f in ${MDOCFILES}; do \ rm -f temp; \ sed -f ${.CURDIR}/strip.sed ${.CURDIR}/$$f >temp; \ + if [ ! -d ${DESTDIR}${MDOCDIR} ]; then \ + mkdir ${DESTDIR}${MDOCDIR}; \ + fi; \ install -c -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \ temp ${DESTDIR}${MDOCDIR}/$$f; \ done Index: troffrc =================================================================== RCS file: /spare/FreeBSD-current/src/gnu/usr.bin/ngroff/tmac/troffrc,v retrieving revision 1.3 diff -u -r1.3 troffrc --- 1.3 1995/01/17 20:08:42 +++ troffrc 1995/01/18 19:00:38 @@ -21,9 +21,9 @@ .\" Set the hyphenation language to `us'. .\" Load hyphenation patterns from `hyphen.us' (in the tmac directory). .ie "\*[.T]"koi8-r" \ -.do hla us-ru -.do hpf hyphen.us-ru +.do hla us-ru +.do hpf hyphen.us-ru .el \ -.do hla us -.do hpf hyphen.us +.do hla us +.do hpf hyphen.us .\" Don't let blank lines creep in here. -- Ollivier ROBERT -=- The daemon is FREE! -=- roberto@keltia.frmug.fr.net FreeBSD keltia 2.1.0-Development #9: Tue Jan 17 21:12:14 MET 1995