diff options
author | wollman <wollman@FreeBSD.org> | 2001-02-09 21:27:09 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 2001-02-09 21:27:09 +0000 |
commit | 0ee225494f1b69fbbb5370a96dace6bf925886e2 (patch) | |
tree | 7344b540f8b541122682f0537dc44f318b8fcacc /share/monetdef/Makefile | |
parent | df3a31abf203592e9464bf0d24079937c13507c3 (diff) | |
download | FreeBSD-src-0ee225494f1b69fbbb5370a96dace6bf925886e2.zip FreeBSD-src-0ee225494f1b69fbbb5370a96dace6bf925886e2.tar.gz |
Add additional English- and French-speaking countries with the appropriate
currency symbols. Use make(1) loops, not sh(1) loops.
Diffstat (limited to 'share/monetdef/Makefile')
-rw-r--r-- | share/monetdef/Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/share/monetdef/Makefile b/share/monetdef/Makefile index abd8c55..b18ee7d 100644 --- a/share/monetdef/Makefile +++ b/share/monetdef/Makefile @@ -6,9 +6,14 @@ CLEANFILES+= ${LOCALES:S/$/.out/g} LOCALES= af_ZA.ISO_8859-1 \ da_DK.ISO_8859-1 \ de_DE.ISO_8859-1 \ + en_AU.ISO_8859-1 \ + en_CA.ISO_8859-1 \ + en_GB.ISO_8859-1 \ + en_NZ.ISO_8859-1 \ en_US.ISO_8859-1 \ fi_FI.ISO_8859-1 \ fr_FR.ISO_8859-1 \ + fr_CA.ISO_8859-1 \ is_IS.ISO_8859-1 \ nl_NL.ISO_8859-1 \ no_NO.ISO_8859-1 \ @@ -25,9 +30,9 @@ LOCALEDIR= ${DESTDIR}/usr/share/locale all: ${LOCALES:S/$/.out/g} afterinstall: - for l in ${LOCALES}; do \ - ${INSTALL} ${COPY} -m 644 -o ${BINOWN} -g ${BINGRP} $$l.out \ - ${LOCALEDIR}/$$l/LC_MONETARY; \ - done +.for lang in ${LOCALES} + ${INSTALL} ${COPY} -m 644 -o ${BINOWN} -g ${BINGRP} ${lang}.out \ + ${LOCALEDIR}/${lang}/LC_MONETARY +.endfor .include <bsd.prog.mk> |