setup: don't ship i18n directory
authorMartin Geisler <mg@lazybytes.net>
Thu, 03 Dec 2009 20:41:43 +0100
changeset 9998 4a3c388f8c69
parent 9997 c08583734fc5
child 9999 f91e5630ce7e
setup: don't ship i18n directory The directory was never actually used at runtime and other programs don't ship it either.
setup.py
--- a/setup.py	Thu Dec 03 11:07:14 2009 +0100
+++ b/setup.py	Thu Dec 03 20:41:43 2009 +0100
@@ -256,7 +256,7 @@
         packages.extend(['hgext.inotify', 'hgext.inotify.linux'])
 
 datafiles = []
-for root in ('templates', 'i18n', 'help'):
+for root in ('templates', 'help'):
     for dir, dirs, files in os.walk(root):
         dirs[:] = [x for x in dirs if not x.startswith('.')]
         files = [x for x in files if not x.startswith('.')]