Changeset 4930
- Timestamp:
- 06/27/09 14:33:59 (4 years ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
install_scripts/common.py (modified) (1 diff)
-
setup.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/install_scripts/common.py
r4386 r4930 7 7 BIN_DIRNAME = 'bin' 8 8 UMIT_MAIN = os.path.join(BIN_DIRNAME, 'umit') 9 9 UMIT_SCHEDULER = os.path.join(BIN_DIRNAME, 'umit_scheduler.py') 10 10 # These directories are relative to the installation or dist directory 11 11 # Ex: python setup.py install --prefix=/tmp/umit -
trunk/setup.py
r4474 r4930 312 312 313 313 def set_modules_path(self): 314 umit_name = os.path.split(common.UMIT_MAIN)[1] 314 # UMIT_MAIN 315 self._replace_path(common.UMIT_MAIN) 316 # UMIT_SCHEDULER 317 self._replace_path(os.path.join(common.UMIT_SCHEDULER)) 318 319 def _replace_path(self, file): 320 umit_name = os.path.split(file)[1] 315 321 umit = os.path.join(self.install_scripts, umit_name) 316 322 modules = self.install_lib … … 336 342 ufile.writelines(ucontent) 337 343 ufile.close() 338 344 339 345 def set_perms(self): 340 346 re_bin = re.compile("(bin)")
