Changeset 20118 in vbox for trunk/src/VBox/Main/glue
- Timestamp:
- May 28, 2009 1:25:08 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 47883
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.