diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2009-12-16 14:12:11 -0600 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-12-17 22:24:36 +0100 |
commit | d02ffbf8d72085035f746c63c2609daf20a84765 (patch) | |
tree | 42cefcadfd44aa088d9fbf064419e6074a18731d /drivers/bios_emulator | |
parent | bb3bcfa2426cc6a0aecec7270e3ee67ca843a125 (diff) | |
download | u-boot-imx-d02ffbf8d72085035f746c63c2609daf20a84765.zip u-boot-imx-d02ffbf8d72085035f746c63c2609daf20a84765.tar.gz u-boot-imx-d02ffbf8d72085035f746c63c2609daf20a84765.tar.bz2 |
drivers/bios_emulator: Fix compile error in .depend not being generated
make -C drivers/bios_emulator/
make[2]: Entering directory
`drivers/bios_emulator'
In file included from atibios.c:49:
biosemui.h:47:21: error: biosemu.h: No such file or directory
...
x86emu/decode.c:40:28: error: x86emu/x86emui.h: No such file or directory
...
Due to lack of proper CPPFLAGS being passed to .depend generation rule
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'drivers/bios_emulator')
-rw-r--r-- | drivers/bios_emulator/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/bios_emulator/Makefile b/drivers/bios_emulator/Makefile index dd9c102..feba4da 100644 --- a/drivers/bios_emulator/Makefile +++ b/drivers/bios_emulator/Makefile @@ -23,6 +23,7 @@ EXTRA_CFLAGS += -I. -I./include -I$(TOPDIR)/include \ CFLAGS += $(EXTRA_CFLAGS) HOSTCFLAGS += $(EXTRA_CFLAGS) +CPPFLAGS += $(EXTRA_CFLAGS) all: $(LIB) |