Changeset 3279

Show
Ignore:
Timestamp:
07/25/07 16:31:54 (1 year ago)
Author:
paul
Message:

Minor fixes to setup.py, which may or may not be strictly necessary.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/setup.py

    r3273 r3279  
    1010 
    1111# List the paths under dabo/icon/themes: 
    12 iconDir = "dabo/icons/themes" 
     12iconDir = os.path.join("dabo", "icons", "themes") 
    1313iconDirs = {} 
    1414def getIconSubDir(arg, dirname, fnames): 
     
    2222 
    2323# locale dirs: 
    24 localeDir = "dabo/locale" 
     24localeDir = os.path.join("dabo", "locale") 
    2525localeDirs = [] 
    2626def getLocaleDirs(arg, dirname, fnames): 
     
    4848 
    4949data_files = [ 
    50         ('dabo/locale', glob.glob('dabo/locale/*.pot')), 
     50        (os.path.join('dabo', 'locale'), glob.glob('dabo/locale/*.pot')), 
    5151        ] 
    5252data_files.extend(localeDirs)