x86/shim: Fix parallel build following c/s 32b1d62887d0
authorAndrew Cooper <andrew.cooper3@citrix.com>
Mon, 5 Aug 2019 13:48:21 +0000 (14:48 +0100)
committerAndrew Cooper <andrew.cooper3@citrix.com>
Mon, 5 Aug 2019 18:01:48 +0000 (19:01 +0100)
commit060f4eee0fb408b316548775ab921e16b7acd0e0
tree6919869dfb0a9a9ecf4dc168fe439c6fabc7481b
parent32b1d62887d01f85f0c1d2e0103f69f74e1f6fa3
x86/shim: Fix parallel build following c/s 32b1d62887d0

Unfortunately, a parallel build from clean can fail in the following manner:

  xen.git$ make -j4 -C tools/firmware/xen-dir/
  make: Entering directory '/local/xen.git/tools/firmware/xen-dir'
  mkdir -p xen-root
  make: *** No rule to make target 'xen-root/xen/arch/x86/configs/pvshim_defconfig', needed by 'xen-root/xen/.config'.  Stop.
  make: *** Waiting for unfinished jobs....

The rule for pvshim_defconfig needs to depend on the linkfarm, rather than
$(D)/xen/.config specifically.

Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
tools/firmware/xen-dir/Makefile