Skip to content

Commit

Permalink
BaseTools: Fix dependency issue in PcdValueInit
Browse files Browse the repository at this point in the history
This change has been accepted upstream, but not yet merged into master.

The generated Makefile was missing a dependency.  This results in a
build-time race condition if the called make runs multiple jobs.

Bug 3526159

Change-Id: Ic5df115b1748f393cb495c3a97153e0dc94b3be7
  • Loading branch information
jgarver committed Jun 3, 2022
1 parent fe08dcd commit 2dba507
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion BaseTools/Source/Python/Workspace/DscBuildData.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ def _IsFieldValueAnArray (Value):

AppTarget = '''
all: $(APPFILE)
$(APPFILE): $(OBJECTS)
$(APPLICATION): $(OBJECTS)
$(APPFILE): $(APPLICATION)
%s
'''

Expand Down

0 comments on commit 2dba507

Please sign in to comment.