summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2005-05-20 05:36:25 +0000
committerMichael Koch <konqueror@gmx.de>2005-05-20 05:36:25 +0000
commit7af460646114bdc96a4e5667d4177efbd3ae638e (patch)
treefe6ef4ca502a53b0320891c6335c4a47edf2f691 /scripts
parentbc77683e60437b6323e56fde26765ee93b21c9c7 (diff)
downloadclasspath-7af460646114bdc96a4e5667d4177efbd3ae638e.tar.gz
2005-05-20 Michael Koch <konqueror@gmx.de>
* scripts/generate-locale-list.sh: Use the new locale properties files.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/generate-locale-list.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/generate-locale-list.sh b/scripts/generate-locale-list.sh
index 2562c105d..5537f3f33 100755
--- a/scripts/generate-locale-list.sh
+++ b/scripts/generate-locale-list.sh
@@ -52,7 +52,7 @@ echo "{"
echo " public static String[] localeNames ="
echo " {"
-( cd $CLASSPATH_SRCDIR/resource/gnu/java/locale ; ls LocaleInformation_*.java ) | xargs -n 1 echo | sed -e 's/LocaleInformation_\(.*\)\.java/\1/' |
+( cd $CLASSPATH_SRCDIR/resource/gnu/java/locale ; ls LocaleInformation_*.properties ) | xargs -n 1 echo | sed -e 's/LocaleInformation_\(.*\)\.properties/\1/' |
while read locale ; do echo " \"$locale\"," ; done
echo " };"