public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH 1/1] BaseTools: Add double quote around CLANG_BIN path string
@ 2021-04-17 12:21 Steven Shi
  2021-04-19  1:06 ` 回复: [edk2-devel] " gaoliming
  2021-04-19  8:34 ` Bob Feng
  0 siblings, 2 replies; 6+ messages in thread
From: Steven Shi @ 2021-04-17 12:21 UTC (permalink / raw)
  To: devel; +Cc: bob.c.feng, gaoliming, Steven Shi

REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3341

Current CLANG_BIN env variable is set without double quote
around the LLVM default installation path string in windows,
which causes some CI build service cannot find the LLVM path
in windows.
This patch enhance it to add double quote around it.

Signed-off-by: Steven Shi <steven.shi@intel.com>
Cc: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
---
 edksetup.bat | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/edksetup.bat b/edksetup.bat
index 7b9377aaa5c2..7ad137bb3e9b 100755
--- a/edksetup.bat
+++ b/edksetup.bat
@@ -120,7 +120,7 @@ if not defined CLANG_BIN (
     @echo.
     @echo !!! WARNING !!! CLANG_BIN environment variable is not set
     @if exist "C:\Program Files\LLVM\bin\clang.exe" (
-        @set CLANG_BIN=C:\Program Files\LLVM\bin\
+        @set "CLANG_BIN=C:\Program Files\LLVM\bin\"
         @echo   Found LLVM, setting CLANG_BIN environment variable to C:\Program Files\LLVM\bin\
     )
 )
-- 
2.28.0.windows.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-04-20 10:17 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-17 12:21 [PATCH 1/1] BaseTools: Add double quote around CLANG_BIN path string Steven Shi
2021-04-19  1:06 ` 回复: [edk2-devel] " gaoliming
2021-04-19  8:34 ` Bob Feng
2021-04-19  8:47   ` Steven Shi
2021-04-19  9:12     ` Bob Feng
     [not found]     ` <167737869DB0B53D.14647@groups.io>
2021-04-20 10:17       ` [edk2-devel] " Bob Feng

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox