From f8f5b620a2fc7938d636531036047335b7b8aefb Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Tue, 25 Aug 2009 12:18:05 +0000 Subject: Only build option_table.o if CONFIG_HAVE_OPTION_TABLE is 'y'. Not all boards have an option table (cmos.layout). Signed-off-by: Uwe Hermann Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4570 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/arch/i386/Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/arch/i386/Makefile.inc b/src/arch/i386/Makefile.inc index 7fed6f5387..c505740d85 100644 --- a/src/arch/i386/Makefile.inc +++ b/src/arch/i386/Makefile.inc @@ -5,7 +5,7 @@ subdirs-y += init subdirs-y += lib subdirs-y += smp -obj-y += ../../option_table.o +obj-$(CONFIG_HAVE_OPTION_TABLE) += ../../option_table.o ifdef POST_EVALUATION BOOTBLOCK_SIZE=65536 -- cgit v1.2.3