Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 3 Aug 1997 13:03:48 -0400 (EDT)
From:      Chuck Robey <chuckr@glue.umd.edu>
To:        FreeBSD current <freebsd-current@freefall.FreeBSD.org>
Subject:   /usr/src/usr.bin/ee
Message-ID:  <Pine.BSF.3.96.970803130048.18178C-100000@Journey2.mat.net>

next in thread | raw e-mail | index | archive | help

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 <bsd.prog.mk>

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!
----------------------------+-----------------------------------------------




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.3.96.970803130048.18178C-100000>