From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from muon.cran.org.uk (muon.bluestop.org [74.50.51.35]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id F09E182150 for ; Mon, 12 Dec 2016 18:32:51 -0800 (PST) Received: from muon.bluestop.org (localhost [127.0.0.1]) by muon.cran.org.uk (Postfix) with ESMTP id 4413530235 for ; Tue, 13 Dec 2016 02:32:51 +0000 (UTC) Received: from muon.cran.org.uk ([127.0.0.1]) by muon.bluestop.org (muon.bluestop.org [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id XYKDlrvjQnmi for ; Tue, 13 Dec 2016 02:32:50 +0000 (UTC) Received: from localhost.localdomain (unknown [IPv6:2601:681:4300:2420:6580:bf1a:e1e7:dd88]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by muon.cran.org.uk (Postfix) with ESMTPSA for ; Tue, 13 Dec 2016 02:32:50 +0000 (UTC) From: Rebecca Cran To: edk2-devel@lists.01.org Date: Mon, 12 Dec 2016 19:32:43 -0700 Message-Id: <20161213023243.8460-2-rebecca@bluestop.org> X-Mailer: git-send-email 2.11.0.windows.1 In-Reply-To: <20161213023243.8460-1-rebecca@bluestop.org> References: <20161213023243.8460-1-rebecca@bluestop.org> Subject: [PATCH 1/1] Use the Windows Kits directory under the 32-bit Program Files X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Dec 2016 02:32:52 -0000 On a fresh install of Windows 10 with Visual Studio 2015, a "Windows Kits" directory only exists under the 32-bit Program Files directory, not the 64-bit one. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Rebecca Cran --- BaseTools/Conf/tools_def.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseTools/Conf/tools_def.template b/BaseTools/Conf/tools_def.template index aaae4fcd2916..5ec56ef93045 100755 --- a/BaseTools/Conf/tools_def.template +++ b/BaseTools/Conf/tools_def.template @@ -90,7 +90,7 @@ DEFINE WINSDK8_BIN = ENV(WINSDK8_PREFIX)x86\ DEFINE WINSDK8x86_BIN = ENV(WINSDK8x86_PREFIX)x64 # Microsoft Visual Studio 2015 Professional Edition -DEFINE WINSDK81_BIN = ENV(WINSDK81_PREFIX)x86\ +DEFINE WINSDK81_BIN = ENV(WINSDK81x86_PREFIX)x86 DEFINE WINSDK81x86_BIN = ENV(WINSDK81x86_PREFIX)x64 # These defines are needed for certain Microsoft Visual Studio tools that -- 2.11.0.windows.1