Paul Kocialkowski (contact@paulk.fr) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11118
-gerrit
commit 37dc65e5650d440e8fac7d9d10d472ac91e179ba Author: Paul Kocialkowski contact@paulk.fr Date: Mon Aug 3 16:44:01 2015 +0200
libpayload: .xcompile target is an actual file
Marking .xcompile as PHONY implies triggering the xcompile script each time make is invoked. This is particularly problematic, especially when the script cannot find the crossgcc toolchains on its own and has to be fed XGCCPATH.
Change-Id: Icb5ae82b210bca1ee9cf56d76130eefde481f81e Signed-off-by: Paul Kocialkowski contact@paulk.fr --- payloads/libpayload/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/payloads/libpayload/Makefile b/payloads/libpayload/Makefile index 206785c..ba883cc 100644 --- a/payloads/libpayload/Makefile +++ b/payloads/libpayload/Makefile @@ -312,4 +312,4 @@ distclean: clean-cscope rm -rf $(obj) rm -f .config .config.old ..config.tmp .kconfig.d .tmpconfig* .ccwrap .xcompile
-.PHONY: $(PHONY) clean clean-cscope cscope distclean doxygen doxy .xcompile +.PHONY: $(PHONY) clean clean-cscope cscope distclean doxygen doxy