mirror of https://github.com/acidanthera/audk.git
ArmPlatformPkg/ArmVExpressPkg: Fixed when EDK2_ARMVE_STANDALONE is set to zero
If EDK2_ARMVE_STANDALONE is not defined then the value is set to 1. The developer has to explicit set the macro to zero to build a non standalone build. It means this macro is always defined. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Olivier Martin <olivier.martin@arm.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14906 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
5ec61d4152
commit
8c6ab85790
|
@ -81,7 +81,7 @@
|
|||
################################################################################
|
||||
|
||||
[PcdsFeatureFlag.common]
|
||||
!ifdef EDK2_ARMVE_STANDALONE
|
||||
!if $(EDK2_ARMVE_STANDALONE) == 1
|
||||
gArmPlatformTokenSpaceGuid.PcdStandalone|TRUE
|
||||
!else
|
||||
gArmPlatformTokenSpaceGuid.PcdStandalone|FALSE
|
||||
|
|
Loading…
Reference in New Issue