diff options
author | ache <ache@FreeBSD.org> | 2001-06-10 19:21:54 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2001-06-10 19:21:54 +0000 |
commit | 9fcb485ee97fce42c3c3606eef6288edcaf211a2 (patch) | |
tree | 6559e255cf3e304caa42e7afeee44a26e008dfde /share/monetdef | |
parent | 7509c7599177c11bc0c8d13411caa1e0db96f8dc (diff) | |
download | FreeBSD-src-9fcb485ee97fce42c3c3606eef6288edcaf211a2.zip FreeBSD-src-9fcb485ee97fce42c3c3606eef6288edcaf211a2.tar.gz |
Add more *.US-ASCII entries
Diffstat (limited to 'share/monetdef')
-rw-r--r-- | share/monetdef/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/share/monetdef/Makefile b/share/monetdef/Makefile index 39ba692..bd4286e 100644 --- a/share/monetdef/Makefile +++ b/share/monetdef/Makefile @@ -42,6 +42,8 @@ LOCALES= af_ZA.ISO8859-1 \ LOCALEDIR= ${DESTDIR}/usr/share/locale +ASCIILINKS = en_AU en_CA en_GB en_NZ en_US + .SUFFIXES: .src .out .src.out: @@ -54,7 +56,9 @@ afterinstall: ${INSTALL} ${COPY} -m 644 -o ${BINOWN} -g ${BINGRP} ${lang}.out \ ${LOCALEDIR}/${lang}/LC_MONETARY .endfor - ln -fs ../en_US.ISO8859-1/LC_MONETARY \ - ${LOCALEDIR}/en_US.US-ASCII/LC_MONETARY +.for link in ${ASCIILINKS} + ln -fs ../${link}.ISO8859-1/LC_MONETARY \ + ${LOCALEDIR}/${link}.US-ASCII/LC_MONETARY +.endfor .include <bsd.prog.mk> |