diff options
author | Yonghong Zhu <yonghong.zhu@intel.com> | 2017-04-01 13:57:16 +0800 |
---|---|---|
committer | Yonghong Zhu <yonghong.zhu@intel.com> | 2017-04-06 15:27:15 +0800 |
commit | 6035094da8b68c0d66cce327309efee551caa5dc (patch) | |
tree | b4f302fd5079ba8289444fddc3bc941bdbe43330 | |
parent | 8693aa6a13329a8612412789b5471c56e515ed45 (diff) | |
download | edk2-6035094da8b68c0d66cce327309efee551caa5dc.zip edk2-6035094da8b68c0d66cce327309efee551caa5dc.tar.gz edk2-6035094da8b68c0d66cce327309efee551caa5dc.tar.bz2 |
BaseTools: update error message for SKUID_IDENTIFIER format
Per DSC spec, the SkuUiName use '|' as separator, so this patch update
the error message to use '|' but not space as separator.
Cc: Liming Gao <liming.gao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
-rw-r--r-- | BaseTools/Source/Python/Common/Misc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BaseTools/Source/Python/Common/Misc.py b/BaseTools/Source/Python/Common/Misc.py index 1a5968a..390ef36 100644 --- a/BaseTools/Source/Python/Common/Misc.py +++ b/BaseTools/Source/Python/Common/Misc.py @@ -2006,7 +2006,7 @@ class SkuClass(): except Exception:
EdkLogger.error("build", PARAMETER_INVALID,
ExtraData = "SKU-ID [%s] is not supported by the platform. [Valid SKU-ID: %s]"
- % (k, " ".join(SkuIds.keys())))
+ % (k, " | ".join(SkuIds.keys())))
if len(self.SkuIdSet) == 2 and 'DEFAULT' in self.SkuIdSet and SkuIdentifier != 'ALL':
self.SkuIdSet.remove('DEFAULT')
self.SkuIdNumberSet.remove('0U')
@@ -2016,7 +2016,7 @@ class SkuClass(): else:
EdkLogger.error("build", PARAMETER_INVALID,
ExtraData="SKU-ID [%s] is not supported by the platform. [Valid SKU-ID: %s]"
- % (each, " ".join(SkuIds.keys())))
+ % (each, " | ".join(SkuIds.keys())))
def __SkuUsageType(self):
|