Commit f704e99d authored by Linus Torvalds's avatar Linus Torvalds

Fix kbuild problem with O=

Kbuild can't fix up "-I $(src)/.." to the right directory
due to the particular magic transformations it does on -I
arguments. Remove the space, use "-I$(src)/.." and it works.

Hopefully Sam will fix this build issue. 

I think somebody should dress up as scripts/Makefile.lib
for Halloween. Now _that_ would be scary.
parent 4d405efc
...@@ -5,4 +5,4 @@ cx8802-objs := cx88-mpeg.o ...@@ -5,4 +5,4 @@ cx8802-objs := cx88-mpeg.o
obj-$(CONFIG_VIDEO_CX88) += cx88xx.o cx8800.o cx8802.o cx88-blackbird.o obj-$(CONFIG_VIDEO_CX88) += cx88xx.o cx8800.o cx8802.o cx88-blackbird.o
obj-$(CONFIG_VIDEO_CX88_DVB) += cx88-dvb.o obj-$(CONFIG_VIDEO_CX88_DVB) += cx88-dvb.o
EXTRA_CFLAGS = -I $(src)/.. -I $(srctree)/drivers/media/dvb/dvb-core EXTRA_CFLAGS = -I$(src)/.. -I$(srctree)/drivers/media/dvb/dvb-core
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment