Changes in setup.py [10674:ac200cc97b30:10763:907417d7e57b] in orange
Legend:
- Unmodified
- Added
- Removed
-
setup.py
r10674 r10763 454 454 # 455 455 liborange = os.path.join(self.install_dir, "Orange", "liborange.so") 456 if self.force andos.path.exists(liborange) and os.path.islink(liborange):456 if os.path.exists(liborange) and os.path.islink(liborange): 457 457 log.info("unlinking %s -> %s", liborange, os.path.join(self.install_dir, "orange.so")) 458 458 os.unlink(liborange) … … 592 592 libraries=libraries 593 593 ) 594 595 596 import __builtin__ as builtins597 598 # We are setting a global variable so that the main Orange __init__ can detect599 # if it is being loaded by the setup routine, to avoid attempting to600 # load components that aren't built yet.601 builtins.__ORANGE_SETUP__ = True602 594 603 595 def get_packages():
Note: See TracChangeset
for help on using the changeset viewer.
