mirror of https://github.com/acidanthera/audk.git
BaseTools: Fix PLATFORM_DIR variable value.
In commit 017fb1cd4c
, the PLATFORM_DIR
macro has been updated to resolve to the correct path. However, it is
incorrectly accessed via curved rather than curly braces by GenMake.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Marvin Haeuser <Marvin.Haeuser@outlook.com>
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
This commit is contained in:
parent
670bf6a722
commit
7a5f1426c5
|
@ -990,7 +990,7 @@ PLATFORM_NAME = ${platform_name}
|
|||
PLATFORM_GUID = ${platform_guid}
|
||||
PLATFORM_VERSION = ${platform_version}
|
||||
PLATFORM_RELATIVE_DIR = ${platform_relative_directory}
|
||||
PLATFORM_DIR = $(platform_dir)
|
||||
PLATFORM_DIR = ${platform_dir}
|
||||
PLATFORM_OUTPUT_DIR = ${platform_output_directory}
|
||||
|
||||
#
|
||||
|
@ -1173,7 +1173,7 @@ PLATFORM_NAME = ${platform_name}
|
|||
PLATFORM_GUID = ${platform_guid}
|
||||
PLATFORM_VERSION = ${platform_version}
|
||||
PLATFORM_FILE = ${platform_file}
|
||||
PLATFORM_DIR = $(platform_dir)
|
||||
PLATFORM_DIR = ${platform_dir}
|
||||
PLATFORM_OUTPUT_DIR = ${platform_output_directory}
|
||||
|
||||
#
|
||||
|
|
Loading…
Reference in New Issue