Changeset 34082 in vbox
- Timestamp:
- Nov 15, 2010 5:19:22 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxShell/vboxshell.py
r33550 r34082 3301 3301 vpp = cwd 3302 3302 print "Autodetected VBOX_PROGRAM_PATH as",vpp 3303 os.environ["VBOX_PROGRAM_PATH"] = cwd3303 os.environ["VBOX_PROGRAM_PATH"] = vpp 3304 3304 sys.path.append(os.path.join(vpp, "sdk", "installer")) 3305 vsp = os.environ.get("VBOX_SDK_PATH") 3306 if vsp is None and os.path.isfile(os.path.join(cwd, "sdk", "bindings", "VirtualBox.xidl")) : 3307 vsp = os.path.join(cwd, "sdk") 3308 if vsp is None and os.path.isfile(os.path.join(vpp, "sdk", "bindings", "VirtualBox.xidl")) : 3309 vsp = os.path.join(vpp, "sdk") 3310 if vsp is not None : 3311 print "Autodetected VBOX_SDK_PATH as",vsp 3312 os.environ["VBOX_SDK_PATH"] = vsp 3305 3313 3306 3314 from vboxapi import VirtualBoxManager
Note:
See TracChangeset
for help on using the changeset viewer.