diff options
author | Stefan Reinauer <reinauer@chromium.org> | 2011-08-11 14:51:31 -0700 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-03-09 20:34:43 +0100 |
commit | 526087172dcdceebafcfffb08d47ed1c3447f9a4 (patch) | |
tree | 2cf0b296626cc8faabc20f353e3c46f78e3cba5a /src | |
parent | ba9dae27e11102f3bf4477cef70eed3929960104 (diff) | |
download | coreboot-526087172dcdceebafcfffb08d47ed1c3447f9a4.tar.xz |
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>
Reviewed-on: http://review.coreboot.org/698
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src')
-rw-r--r-- | 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 add2fc3cdc..e0e5e75060 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) |