From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mx.groups.io with SMTP id smtpd.web10.34344.1670287496440593600 for ; Mon, 05 Dec 2022 16:44:56 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=e8+z8mJo; spf=pass (domain: intel.com, ip: 192.55.52.120, mailfrom: michael.d.kinney@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1670287496; x=1701823496; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=w5iZvjtyFPYeX+h48WEFjvBX3q09P6wqHDJa7MBxS3o=; b=e8+z8mJoaHJtv4rDUaFCV40ShlocnmSkBpXZZg0jytyeFv381cUt2rTx 30Tu5lsVj4rzOpJkKEwc0YEXuF3a8mtu1j94a/iVGH5rqEaFkCj7EqKyp TPBnjSxhSAt+oeyr+ob4JIhBzn4uPomS3YTkyF1HE/e0vEfVwcF8/rKzA tAVLI8Otf5OOLKB9gjeUADg/3lG7CCRAMMQM/+YOwlnfU6woWk9fRO94V CbBC40mQIeejzR8ao4eBRQXiiEZbtB+vzaWu9kJN2/8MG3Wrddwy9GPOC sdw53uqkRbLqlaROzuqV+YI257UCDkNLgAoO8sty1KzK8nvgAEG16Sxty w==; X-IronPort-AV: E=McAfee;i="6500,9779,10552"; a="315209986" X-IronPort-AV: E=Sophos;i="5.96,220,1665471600"; d="scan'208";a="315209986" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Dec 2022 16:44:55 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10552"; a="752418674" X-IronPort-AV: E=Sophos;i="5.96,220,1665471600"; d="scan'208";a="752418674" Received: from mdkinney-mobl2.amr.corp.intel.com ([10.212.194.125]) by fmsmga002-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Dec 2022 16:44:55 -0800 From: "Michael D Kinney" To: devel@edk2.groups.io Cc: Abner Chang , Nickle Wang , Igor Kulchytskyy Subject: [Patch 1/1] RedfishPkg: Remove overlapping private include path in DEC file Date: Mon, 5 Dec 2022 16:44:46 -0800 Message-Id: <20221206004446.12-1-michael.d.kinney@intel.com> X-Mailer: git-send-email 2.37.1.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Update ReadfishPkg.dec to remove PrivateInclude from the [Includes.Common.Private] section. The PrivateInclude directory does not contain any include files, and the PrivateInclude/Crt include path remaining in the [Includes.Common.Private] section providing the include path required to access the CRT related include files by components within the RedfishPkg. Without this update, there are two forms of #include statements that can be used to include the CRT related include files. Include files should only be available using one form of #include statements. Cc: Abner Chang Cc: Nickle Wang Cc: Igor Kulchytskyy Signed-off-by: Michael D Kinney --- RedfishPkg/RedfishPkg.dec | 1 - 1 file changed, 1 deletion(-) diff --git a/RedfishPkg/RedfishPkg.dec b/RedfishPkg/RedfishPkg.dec index 0aa26883e220..d2b189b13d8c 100644 --- a/RedfishPkg/RedfishPkg.dec +++ b/RedfishPkg/RedfishPkg.dec @@ -17,7 +17,6 @@ [Includes] Include [Includes.Common.Private] - PrivateInclude # Private header files for C RTL. PrivateInclude/Crt # Private header files for C RTL. Library/JsonLib # Private header files for jansson # configuration files. -- 2.37.1.windows.1