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:
authorJackson Harper <jackson@novell.com>2004-05-24 16:52:23 +0400
committerJackson Harper <jackson@novell.com>2004-05-24 16:52:23 +0400
commit852c973b7866b72ae423f883837c3a2860cf5d3d (patch)
tree1f07d30d0dcf817d08f61a8c9ce27f60ed12a389 /tools
parent013f0130e164622e402f83b3b463bcafc03a9ef8 (diff)
* Driver.cs: Filter on GetFiles so we only get the xml locale
files. svn path=/trunk/mono/; revision=27963
Diffstat (limited to 'tools')
-rw-r--r--tools/locale-builder/ChangeLog3
-rw-r--r--tools/locale-builder/Driver.cs2
2 files changed, 4 insertions, 1 deletions
diff --git a/tools/locale-builder/ChangeLog b/tools/locale-builder/ChangeLog
new file mode 100644
index 00000000000..a34b0eba287
--- /dev/null
+++ b/tools/locale-builder/ChangeLog
@@ -0,0 +1,3 @@
+2004-05-24 Jackson Harper <jackson@ximian.com>
+
+ * Driver.cs: Filter on GetFiles so we only get the xml locale files. \ No newline at end of file
diff --git a/tools/locale-builder/Driver.cs b/tools/locale-builder/Driver.cs
index 27c4f15315e..6e272299642 100644
--- a/tools/locale-builder/Driver.cs
+++ b/tools/locale-builder/Driver.cs
@@ -82,7 +82,7 @@ namespace Mono.Tools.LocaleBuilder {
LookupCurrencyTypes ();
- foreach (string file in Directory.GetFiles ("locales")) {
+ foreach (string file in Directory.GetFiles ("locales", "*.xml")) {
string fn = Path.GetFileNameWithoutExtension (file);
if (locales_regex == null || locales_regex.IsMatch (fn)) {
ParseLocale (fn);