Changeset 31871 in vbox
- Timestamp:
- Aug 23, 2010 3:48:47 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.vbs
r30227 r31871 2193 2193 PrintResult "Python ", strPathPython 2194 2194 end function 2195 2196 2197 ' 2198 ' 2199 function CheckForMkisofs(strFnameMkisofs) 2200 2201 PrintHdr "mkisofs" 2202 2203 CheckForMkisofs = False 2204 LogPrint "trying: strPathMkisofs=" & strPathMkisofs 2205 2206 if FileExists(strFnameMkisofs) 2207 LogPrint "Testing '" & strFnameMkisofs & " not found" 2208 else 2209 CfgPrint "VBOX_MKISOFS := " & strPathMkisofs & "\mkisofs.exe" 2210 CheckForMkisofs = True 2211 end if 2212 2213 PrintResult "mkisofs ", strFnameMkisofs 2214 end function 2215 2195 2216 2196 2217 '' … … 2259 2280 strOptCurl = "" 2260 2281 strOptPython = "" 2282 strOptMkisofs = "" 2261 2283 blnOptDisableCOM = False 2262 2284 for i = 1 to Wscript.Arguments.Count … … 2308 2330 case "--with-python" 2309 2331 strOptPython = strPath 2332 case "--with-mkisofs" 2333 strOptMkisofs = strPath 2310 2334 case "--disable-com" 2311 2335 blnOptDisableCOM = True … … 2374 2398 CheckForPython strOptPython 2375 2399 end if 2400 if (strOptMkisofs <> "") then 2401 CheckForMkisofs strOptMkisofs 2402 end if 2376 2403 if g_blnInternalMode then 2377 2404 EnvPrint "call " & g_strPathDev & "/env.cmd %1 %2 %3 %4 %5 %6 %7 %8 %9"
Note:
See TracChangeset
for help on using the changeset viewer.