From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mx.groups.io with SMTP id smtpd.web10.2969.1618662131179712372 for ; Sat, 17 Apr 2021 05:22:11 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.115, mailfrom: steven.shi@intel.com) IronPort-SDR: tGz7N18ZxbiafoVicLQ3yFiTRKTKhL73xuOpHyeK2dkPXDfL9U5h0QrX5eejVQT83UdIW7xutg 3fpl2GXpepWw== X-IronPort-AV: E=McAfee;i="6200,9189,9956"; a="194719870" X-IronPort-AV: E=Sophos;i="5.82,229,1613462400"; d="scan'208";a="194719870" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Apr 2021 05:22:10 -0700 IronPort-SDR: xM69Fpp8PS0ELTq9DVU1IBagpzIomJtRxlTrwc+mLHVolbdyIRlNk3XT7MEgnOHr0SBfsEPyyI 9ePhhnPL44Zw== X-IronPort-AV: E=Sophos;i="5.82,229,1613462400"; d="scan'208";a="425913547" Received: from jshi19-mobl1.ccr.corp.intel.com ([10.254.212.223]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Apr 2021 05:22:08 -0700 From: "Steven Shi" To: devel@edk2.groups.io Cc: bob.c.feng@intel.com, gaoliming@byosoft.com.cn, Steven Shi Subject: [PATCH 1/1] BaseTools: Add double quote around CLANG_BIN path string Date: Sat, 17 Apr 2021 20:21:33 +0800 Message-Id: <20210417122133.1879-1-steven.shi@intel.com> X-Mailer: git-send-email 2.28.0.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3D3341 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 Cc: Bob Feng Cc: Liming Gao --- 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.=0D @echo !!! WARNING !!! CLANG_BIN environment variable is not set=0D @if exist "C:\Program Files\LLVM\bin\clang.exe" (=0D - @set CLANG_BIN=3DC:\Program Files\LLVM\bin\=0D + @set "CLANG_BIN=3DC:\Program Files\LLVM\bin\"=0D @echo Found LLVM, setting CLANG_BIN environment variable to C:\P= rogram Files\LLVM\bin\=0D )=0D )=0D --=20 2.28.0.windows.1