Opened 18 years ago
Closed 18 years ago
#146 closed defect (duplicate)
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 (2)
comment:1 by , 18 years ago
comment:2 by , 18 years ago
Resolution: | → duplicate |
---|---|
Status: | new → closed |
Please close as DUPLICATE of bug #145