diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-08-27 11:34:09 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-08-27 11:34:09 +0000 |
commit | 6c36305cdf866aa6c5136f303c98d389b1c1504e (patch) | |
tree | cc7abb7a66770cb1efc8188db5923f796e6ab164 /src/config | |
parent | b883d4c433e39bfeb12060bc7c2662d099d0534d (diff) | |
download | coreboot-6c36305cdf866aa6c5136f303c98d389b1c1504e.tar.xz |
coreboot was still using an old set (obsolete since yabel) of x86emu includes
instead of the versions in util/x86emu. Clean up this mess.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4594 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/Config.lb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/Config.lb b/src/config/Config.lb index d146339c37..dcf6c65188 100644 --- a/src/config/Config.lb +++ b/src/config/Config.lb @@ -10,7 +10,7 @@ makedefine GCC ?= $(CC) makedefine GCC_INC_DIR := $(shell LC_ALL=C $(GCC) -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp") makedefine CPPFLAGS := -I$(TOP)/src/include -I$(TOP)/src/arch/$(CONFIG_ARCH)/include -I$(GCC_INC_DIR) $(CPUFLAGS) -makedefine CFLAGS := $(CONFIG_CPU_OPT) $(DISTRO_CFLAGS) $(CPPFLAGS) -Os -nostdinc -nostdlib -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes -Wwrite-strings -Wredundant-decls -Wno-trigraphs -Werror-implicit-function-declaration -Wstrict-aliasing -Wshadow -fno-common -ffreestanding -fno-builtin -fomit-frame-pointer +makedefine CFLAGS = $(CONFIG_CPU_OPT) $(DISTRO_CFLAGS) $(CPPFLAGS) -Os -nostdinc -nostdlib -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes -Wwrite-strings -Wredundant-decls -Wno-trigraphs -Werror-implicit-function-declaration -Wstrict-aliasing -Wshadow -fno-common -ffreestanding -fno-builtin -fomit-frame-pointer if CONFIG_ASSEMBLER_DEBUG makedefine DEBUG_CFLAGS := -g -dA -fverbose-asm |