Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/698
-gerrit
commit 66caa9db4f4cbcf112200fcd649e8444f1e082a6 Author: Stefan Reinauer reinauer@chromium.org Date: Thu Aug 11 14:51:31 2011 -0700
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 reinauer@google.com --- src/lib/Makefile.inc | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/src/lib/Makefile.inc b/src/lib/Makefile.inc index b930fcc..906dfae 100644 --- a/src/lib/Makefile.inc +++ b/src/lib/Makefile.inc @@ -50,4 +50,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)