From owner-freebsd-current Sun Aug 3 10:03:41 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id KAA02585 for current-outgoing; Sun, 3 Aug 1997 10:03:41 -0700 (PDT) Received: from earth.mat.net (root@earth.mat.net [206.246.122.2]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id KAA02577 for ; Sun, 3 Aug 1997 10:03:37 -0700 (PDT) Received: from Journey2.mat.net (journey2.mat.net [206.246.122.116]) by earth.mat.net (8.6.12/8.6.12) with SMTP id NAA15432 for ; Sun, 3 Aug 1997 13:03:34 -0400 Date: Sun, 3 Aug 1997 13:03:48 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@Journey2.mat.net To: FreeBSD current Subject: /usr/src/usr.bin/ee Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk This died on me during testing of Satoshi's Makefile. I looked at it, and I don't think it's right. I haven't seen any complaints on this yet, but here's the error I got: ===> usr.bin/ee install -c -o bin -g bin -m 444 en_US.ISO_8859-1.ee.cat /usr/X11R6/lib/X11/nls/en_US.ISO_8859-1/ee.cat install: /usr/X11R6/lib/X11/nls/en_US.ISO_8859-1/ee.cat: No such file or directory *** Error code 71 Looking at the ee Makefile, it looks like there's a small typo, because the following diff fixed it: RCS file: /home/ncvs/src/usr.bin/ee/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- Makefile 1997/04/04 15:09:42 1.9 +++ Makefile 1997/08/03 16:55:51 @@ -21,7 +21,7 @@ beforeinstall: .for lang in ${LANGS} ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \ - ${lang}.ee.cat ${DESTDIR}${NLSDIR}/${lang}/ee.cat + ${lang}.ee.cat ${DESTDIR}${NLSDIR}/${lang}.ee.cat .endfor .include If someone else could verify that I'm not breaking things, I'll commit this. ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run Journey2 and picnic, both FreeBSD (301) 220-2114 | version 3.0 current -- and great FUN! ----------------------------+-----------------------------------------------