BaseTools: Fix dependency issue in PcdValueInit

The generated Makefile was missing a dependency.  This resulted in a
build-time race condition if the recursive make is multi-threaded and
shares job control.

Signed-off-by: Jake Garver <jake@nvidia.com>
Reviewed-by: Bob Feng <bob.c.feng@intel.com>
This commit is contained in:
Jake Garver 2022-04-08 00:59:03 +08:00 committed by mergify[bot]
parent 0a4019ec9d
commit 0b36dea3f8
1 changed files with 2 additions and 1 deletions

View File

@ -97,7 +97,8 @@ PcdMakefileEnd = '''
AppTarget = '''
all: $(APPFILE)
$(APPFILE): $(OBJECTS)
$(APPLICATION): $(OBJECTS)
$(APPFILE): $(APPLICATION)
%s
'''