mirror of https://github.com/acidanthera/audk.git
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:
parent
0a4019ec9d
commit
0b36dea3f8
|
@ -97,7 +97,8 @@ PcdMakefileEnd = '''
|
|||
|
||||
AppTarget = '''
|
||||
all: $(APPFILE)
|
||||
$(APPFILE): $(OBJECTS)
|
||||
$(APPLICATION): $(OBJECTS)
|
||||
$(APPFILE): $(APPLICATION)
|
||||
%s
|
||||
'''
|
||||
|
||||
|
|
Loading…
Reference in New Issue