kernel-toolchain: Fix improper build order after r325244.
Due to removing some targets that the previous .ORDER: ${WMAKE_TGTS} set, it was no longer being respected; _build_tools was coming immediately. Pointyhat to: bdrewery X-MFC-with: r325244 MFC after: 2 weeks Sponsored by: Dell EMC Isilon
This commit is contained in:
parent
24b4ce2fe0
commit
651c6845c7
@ -996,7 +996,11 @@ buildenv: .PHONY
|
||||
|
||||
TOOLCHAIN_TGTS= ${WMAKE_TGTS:Neverything:Nbuild${libcompat}}
|
||||
toolchain: ${TOOLCHAIN_TGTS} .PHONY
|
||||
kernel-toolchain: ${TOOLCHAIN_TGTS:N_obj:N_cleanobj:N_includes:N_libraries} .PHONY
|
||||
KERNEL_TOOLCHAIN_TGTS= ${TOOLCHAIN_TGTS:N_obj:N_cleanobj:N_includes:N_libraries}
|
||||
.if make(kernel-toolchain)
|
||||
.ORDER: ${KERNEL_TOOLCHAIN_TGTS}
|
||||
.endif
|
||||
kernel-toolchain: ${KERNEL_TOOLCHAIN_TGTS} .PHONY
|
||||
|
||||
#
|
||||
# installcheck
|
||||
|
Loading…
Reference in New Issue
Block a user