diff options
author | ache <ache@FreeBSD.org> | 2001-06-10 18:44:01 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2001-06-10 18:44:01 +0000 |
commit | 6e29cef514f381939af51b2a9b85044f4c41d464 (patch) | |
tree | c92f891fa3465e771dbc7da31b3bc9e49ff86034 /etc/Makefile | |
parent | da96d2410a9b9a69efa0c6f3ed1087c224061089 (diff) | |
download | FreeBSD-src-6e29cef514f381939af51b2a9b85044f4c41d464.zip FreeBSD-src-6e29cef514f381939af51b2a9b85044f4c41d464.tar.gz |
Deal properly with *.US-ASCII family
Diffstat (limited to 'etc/Makefile')
-rw-r--r-- | etc/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/etc/Makefile b/etc/Makefile index 5d2d4d6..dde3b08 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -189,15 +189,13 @@ distrib-dirs: shift; shift; \ done cd ${DESTDIR}/usr/share/nls; \ - set - `grep "^[a-zA-Z]" ${.CURDIR}/locale.alias`; \ + set - `grep "^[a-zA-Z]" ${.CURDIR}/nls.alias`; \ while [ $$# -gt 0 ] ; \ do \ rm -rf "$$1"; \ ln -s "$$2" "$$1"; \ shift; shift; \ - done; \ - rm -rf POSIX; \ - ln -s C POSIX + done etc-examples: (cd ${.CURDIR}; \ |