Changeset 85892 in vbox
- Timestamp:
- Aug 26, 2020 5:21:07 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 140070
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/envSub.vbs
r85862 r85892 311 311 strOutDir = EnvGetDef("PATH_OUT_BASE", strRootDir & "\out") 312 312 strOutDir = strOutDir & "\" & strTarget & "." & strTargetArch & "\" & strType 313 EnvPrependPathItem "Path", DosSlashes(strOutDir & " bin\tools"), ";"314 EnvPrependPathItem "Path", DosSlashes(strOutDir & " bin"), ";"313 EnvPrependPathItem "Path", DosSlashes(strOutDir & "\bin\tools"), ";" 314 EnvPrependPathItem "Path", DosSlashes(strOutDir & "\bin"), ";" 315 315 316 316 ' Add kbuild binary directory to the front the the path. … … 319 319 ' Finally, add the relevant tools/**/bin directories to the front of the path. 320 320 EnvPrependPathItem "Path", DosSlashes(strPathDevTools & "\bin"), ";" 321 if strHostArch = "amd64" then EnvPrependPathItem "Path", DosSlashes(strPathDevTools & "\ bin\win.x86"), ";"322 EnvPrependPathItem "Path", DosSlashes(strPathDevTools & "\ bin\win." & strHostArch), ";"321 if strHostArch = "amd64" then EnvPrependPathItem "Path", DosSlashes(strPathDevTools & "\win.x86\bin"), ";" 322 EnvPrependPathItem "Path", DosSlashes(strPathDevTools & "\win." & strHostArch) & "\bin", ";" 323 323 324 324 '
Note:
See TracChangeset
for help on using the changeset viewer.