- Timestamp:
- May 28, 2009 1:25:08 PM (16 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/Makefile.kmk
r20115 r20118 173 173 # This file also should go to Python site-wide modules directory 174 174 # so for users it look 'just being here' 175 VBox-python-glue_SOURCES = glue/vboxapi.py=>glue/python/vboxapi .py176 177 VBOX_PYTHON_CONSTANTS = $(VBOX_PATH_SDK)/bindings/glue/python/ VirtualBox_constants.py175 VBox-python-glue_SOURCES = glue/vboxapi.py=>glue/python/vboxapi/__init__.py 176 177 VBOX_PYTHON_CONSTANTS = $(VBOX_PATH_SDK)/bindings/glue/python/vboxapi/VirtualBox_constants.py 178 178 OTHERS += $(VBOX_PYTHON_CONSTANTS) 179 179 -
trunk/src/VBox/Main/glue/vboxapi.py
r20113 r20118 21 21 22 22 if VboxBinDir is None: 23 # @todo: To be set byinstaller24 VboxBinDir = " /home/nike/work/ws/out/linux.amd64/debug/bin/"23 # Will be set by the installer 24 VboxBinDir = "%VBOX_INSTALL_PATH%" 25 25 26 26 if VboxSdkDir is None: … … 28 28 29 29 os.environ["VBOX_PROGRAM_PATH"] = VboxBinDir 30 os.environ["VBOX_SDK_PATH"] = VboxSdkDir30 #os.environ["VBOX_SDK_PATH"] = VboxSdkDir 31 31 sys.path.append(VboxBinDir) 32 sys.path.append(VboxSdkDir+"/bindings/glue/python")32 #sys.path.append(VboxSdkDir+"/bindings/glue/python") 33 33 34 34 from VirtualBox_constants import VirtualBoxReflectionInfo
Note:
See TracChangeset
for help on using the changeset viewer.