Reviewed-by:  Sean Brogan <sean.bro...@microsoft.com>


On 9/21/2022 1:44 PM, Kun Qin wrote:
From: Sean Brogan <sean.bro...@microsoft.com>

Current implementation of looking up toolchain will _insert_ the findings
from vsvarsall.bat to existing path and potentially stuff the variable to
exceed the length of maximal path length accepted by Windows.

This change updated the logic to use the discovered shell varialbes to
replace the existing path, which is desirable in the specific use case.

Cc: Bob Feng <bob.c.f...@intel.com>
Cc: Liming Gao <gaolim...@byosoft.com.cn>
Cc: Yuwei Chen <yuwei.c...@intel.com>

Co-authored-by: Sean Brogan <sean.bro...@microsoft.com>
Signed-off-by: Kun Qin <kuqi...@gmail.com>
---
  BaseTools/Edk2ToolsBuild.py | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/BaseTools/Edk2ToolsBuild.py b/BaseTools/Edk2ToolsBuild.py
index 1ea8187de693..f862468ce275 100644
--- a/BaseTools/Edk2ToolsBuild.py
+++ b/BaseTools/Edk2ToolsBuild.py
@@ -122,7 +122,7 @@ class Edk2ToolsBuild(BaseAbstractInvocable):
              for key in vc_vars.keys():

                  logging.debug(f"Var - {key} = {vc_vars[key]}")

                  if key.lower() == 'path':

-                    shell_env.insert_path(vc_vars[key])

+                    shell_env.set_path(vc_vars[key])

                  else:

                      shell_env.set_shell_var(key, vc_vars[key])



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#94093): https://edk2.groups.io/g/devel/message/94093
Mute This Topic: https://groups.io/mt/93835889/21656
Group Owner: devel+ow...@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


Reply via email to