Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2005-07-07 14:13:38 +0400
committerAtsushi Eno <atsushieno@gmail.com>2005-07-07 14:13:38 +0400
commit10bcc15b6caa394b4912a731613ab236205c311a (patch)
tree4352b1424cd3d21afcb635d29a4804ae98565f61 /tools
parent9579fa8c94295f85bbf0caf7fa044e4c1643c2f3 (diff)
2005-07-07 Atsushi Enomoto <atsushi@ximian.com>
* Driver.cs : Fixed bug #75499. There were hy_AM.xml and hy_AM_REVISED.xml files in the locale builder archive. * culture-info-table.h : regenerated. svn path=/trunk/mono/; revision=47032
Diffstat (limited to 'tools')
-rw-r--r--tools/locale-builder/ChangeLog5
-rw-r--r--tools/locale-builder/Driver.cs2
2 files changed, 7 insertions, 0 deletions
diff --git a/tools/locale-builder/ChangeLog b/tools/locale-builder/ChangeLog
index d56e4b9119f..7e2f5a9469b 100644
--- a/tools/locale-builder/ChangeLog
+++ b/tools/locale-builder/ChangeLog
@@ -1,3 +1,8 @@
+2005-07-07 Atsushi Enomoto <atsushi@ximian.com>
+
+ * Driver.cs : Fixed bug #75499. There were hy_AM.xml and
+ hy_AM_REVISED.xml files in the locale builder archive.
+
2005-06-27 Atsushi Enomoto <atsushi@ximian.com>
* Driver.cs : basic pattern string should be added to extra pattern
diff --git a/tools/locale-builder/Driver.cs b/tools/locale-builder/Driver.cs
index 8ba63dd5829..6a9e21e5f04 100644
--- a/tools/locale-builder/Driver.cs
+++ b/tools/locale-builder/Driver.cs
@@ -84,6 +84,8 @@ namespace Mono.Tools.LocaleBuilder {
foreach (string file in Directory.GetFiles ("locales", "*.xml")) {
string fn = Path.GetFileNameWithoutExtension (file);
+ if (fn == "hy_AM")
+ continue; // see bug #75499
if (locales_regex == null || locales_regex.IsMatch (fn)) {
ParseLocale (fn);
}