From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.93, mailfrom: nathaniel.l.desimone@intel.com) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by groups.io with SMTP; Thu, 08 Aug 2019 17:47:13 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 08 Aug 2019 17:47:12 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,363,1559545200"; d="scan'208";a="180002852" Received: from nldesimo-desk1.amr.corp.intel.com ([10.7.159.63]) by orsmga006.jf.intel.com with ESMTP; 08 Aug 2019 17:47:12 -0700 From: "Nate DeSimone" To: devel@edk2.groups.io Cc: Chasel Chiu , Michael Kubacki Subject: [edk2-platforms] [PATCH] Platform/Intel/KabylakeOpenBoardPkg: Fix build. Date: Thu, 8 Aug 2019 17:46:53 -0700 Message-Id: <20190809004653.39088-1-nathaniel.l.desimone@intel.com> X-Mailer: git-send-email 2.17.1.windows.2 The build for KabylakeOpenBoardPkg is presently broken due to WORKSPACE_PLATFORM_BIN being defined to a marco of the same name in KabylakeOpenBoardPkg/KabylakeRvp3/build_config.cfg Setting this macro to an empty string resolves the issue. Cc: Chasel Chiu Cc: Michael Kubacki Signed-off-by: Nate DeSimone --- .../Intel/KabylakeOpenBoardPkg/KabylakeRvp3/build_config.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Platform/Intel/KabylakeOpenBoardPkg/KabylakeRvp3/build_config.cfg b/Platform/Intel/KabylakeOpenBoardPkg/KabylakeRvp3/build_config.cfg index bf89ea399c..ab1a9a61c2 100644 --- a/Platform/Intel/KabylakeOpenBoardPkg/KabylakeRvp3/build_config.cfg +++ b/Platform/Intel/KabylakeOpenBoardPkg/KabylakeRvp3/build_config.cfg @@ -7,7 +7,7 @@ [CONFIG] -WORKSPACE_PLATFORM_BIN = WORKSPACE_PLATFORM_BIN +WORKSPACE_PLATFORM_BIN = EDK_SETUP_OPTION = openssl_path = PLATFORM_BOARD_PACKAGE = KabylakeOpenBoardPkg -- 2.17.1.windows.2