From: Stefan Reinauer Date: Thu, 11 Aug 2011 21:51:31 +0000 (-0700) Subject: Fix dependency problem for uart8250.c as well X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=coreboot.git;a=commitdiff_plain;h=526087172dcdceebafcfffb08d47ed1c3447f9a4 Fix dependency problem for uart8250.c as well If you build in parallel, option_table.h will occasionally not be there yet and the build will fail. Change-Id: I828956ab2e05c48d20c2f7c55616cc8fa19e1227 Signed-off-by: Stefan Reinauer Reviewed-on: http://review.coreboot.org/698 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- diff --git a/src/lib/Makefile.inc b/src/lib/Makefile.inc index add2fc3cd..e0e5e7506 100644 --- a/src/lib/Makefile.inc +++ b/src/lib/Makefile.inc @@ -52,4 +52,5 @@ OPTION_TABLE_H:=$(obj)/option_table.h endif $(obj)/lib/uart8250mem.smm.o : $(OPTION_TABLE_H) +$(obj)/lib/uart8250.smm.o : $(OPTION_TABLE_H)