Changeset 3279
- Timestamp:
- 07/25/07 16:31:54 (1 year ago)
- Files:
-
- trunk/setup.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/setup.py
r3273 r3279 10 10 11 11 # List the paths under dabo/icon/themes: 12 iconDir = "dabo/icons/themes"12 iconDir = os.path.join("dabo", "icons", "themes") 13 13 iconDirs = {} 14 14 def getIconSubDir(arg, dirname, fnames): … … 22 22 23 23 # locale dirs: 24 localeDir = "dabo/locale"24 localeDir = os.path.join("dabo", "locale") 25 25 localeDirs = [] 26 26 def getLocaleDirs(arg, dirname, fnames): … … 48 48 49 49 data_files = [ 50 ( 'dabo/locale', glob.glob('dabo/locale/*.pot')),50 (os.path.join('dabo', 'locale'), glob.glob('dabo/locale/*.pot')), 51 51 ] 52 52 data_files.extend(localeDirs)
