summaryrefslogtreecommitdiffstats
path: root/BaseTools/Source/Python/Workspace/DecBuildData.py
diff options
context:
space:
mode:
authorFeng, Bob C <bob.c.feng@intel.com>2019-01-14 09:24:12 +0800
committerFeng, Bob C <bob.c.feng@intel.com>2019-01-14 09:34:23 +0800
commit822925013278733ac7f03c35fece2df3e8bc3614 (patch)
treecf8c02d659fc3bcebe6c3c0347e40863a6ecd331 /BaseTools/Source/Python/Workspace/DecBuildData.py
parent514c55c18597c48e1648b67f85cf25b5984da5cc (diff)
downloadedk2-822925013278733ac7f03c35fece2df3e8bc3614.tar.gz
edk2-822925013278733ac7f03c35fece2df3e8bc3614.tar.bz2
edk2-822925013278733ac7f03c35fece2df3e8bc3614.zip
BaseTools: Remove unused logic for EDKI
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1350 Remove EDK module type support from BaseTools python code. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Bob Feng <bob.c.feng@intel.com> Cc: Liming Gao <liming.gao@intel.com> Cc: Jaben Carsey <jaben.carsey@intel.com> Reviewed-by: Jaben Carsey <jaben.carsey@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/Workspace/DecBuildData.py')
-rw-r--r--BaseTools/Source/Python/Workspace/DecBuildData.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/BaseTools/Source/Python/Workspace/DecBuildData.py b/BaseTools/Source/Python/Workspace/DecBuildData.py
index 13b653bd98..36b39be5d5 100644
--- a/BaseTools/Source/Python/Workspace/DecBuildData.py
+++ b/BaseTools/Source/Python/Workspace/DecBuildData.py
@@ -18,7 +18,7 @@ from types import *
from collections import OrderedDict
from CommonDataClass.DataClass import *
from Workspace.BuildClassObject import PackageBuildClassObject, StructurePcd, PcdClassObject
-from Common.GlobalData import gGlobalDefines, gEcpSource
+from Common.GlobalData import gGlobalDefines
from re import compile
## Platform build information from DEC file
@@ -300,7 +300,6 @@ class DecBuildData(PackageBuildClassObject):
PublicInclues = []
RecordList = self._RawData[MODEL_EFI_INCLUDE, self._Arch]
Macros = self._Macros
- Macros["EDK_SOURCE"] = gEcpSource
for Record in RecordList:
File = PathClass(NormPath(Record[0], Macros), self._PackageDir, Arch=self._Arch)
LineNo = Record[-1]