VirtualBox

Opened 17 years ago

Closed 17 years ago

#145 closed defect (fixed)

Bug of configure.vbs

Reported by: lifeengines Owned by:
Component: other Version: VirtualBox 1.3.6
Keywords: Cc:
Guest type: other Host type: other

Description

When i was try to structure the build environment,I found the line 930 of configure.vbs can not find the PlatformSDK's root directory when run the script without parameter "--with-sdk=PATH", line 930:if (strPathPSDK = "") And (str <> "") then I change the line to line 930:if (strPathPSDK = "") And (str = "") then and it's work well. another is in sub CheckForWin2k3DDK

if strPathDDK = "" then

MsgError "Cannot find a suitable Windows 2003 DDK. Check configure.log and the build requirements." exit sub

end if

should put after

arrSubKeys = RegEnumSubKeys("HKCU", "SOFTWARE\Microsoft\WINDDK") @todo Need some sorting stuff here. for Each strSubKey In arrSubKeys

str = RegGetString("HKCU\SOFTWARE\Microsoft\WINDDK\" & strSubKey & "\SFNDirectory") if (strPathDDK = "") And (str <> "") then

if CheckForWin2k3DDKSub(str, False) then strPathDDK = str

end if

Next

Change History (1)

comment:1 by Sander van Leeuwen, 17 years ago

Resolution: fixed
Status: newclosed

Not sure if this is relevant anymore. CLosing.

Note: See TracTickets for help on using tickets.

© 2023 Oracle
ContactPrivacy policyTerms of Use