aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/ivtv
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2012-02-17 02:57:11 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-03-08 08:42:03 -0500
commitd377cfcc42953a4d8312411d1019f8057b1f2242 (patch)
tree767887442a4b42d888c26a9a5b38459ecb902981 /drivers/media/video/ivtv
parent30fc78bad1df4afc7d6bd9112acb09b64331cfa5 (diff)
[media] media: ivtv: append $(srctree) to -I parameters
Without this we have got the warnings like following if build with "make W=1 O=/var/tmp": cc1: warning: drivers/media/dvb/dvb-core: No such file or directory [enabled by default] Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/ivtv')
-rw-r--r--drivers/media/video/ivtv/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/media/video/ivtv/Makefile b/drivers/media/video/ivtv/Makefile
index 71ab76a5ab26..77de8a45b46f 100644
--- a/drivers/media/video/ivtv/Makefile
+++ b/drivers/media/video/ivtv/Makefile
@@ -7,8 +7,8 @@ ivtv-objs := ivtv-routing.o ivtv-cards.o ivtv-controls.o \
7obj-$(CONFIG_VIDEO_IVTV) += ivtv.o 7obj-$(CONFIG_VIDEO_IVTV) += ivtv.o
8obj-$(CONFIG_VIDEO_FB_IVTV) += ivtvfb.o 8obj-$(CONFIG_VIDEO_FB_IVTV) += ivtvfb.o
9 9
10ccflags-y += -Idrivers/media/video 10ccflags-y += -I$(srctree)/drivers/media/video
11ccflags-y += -Idrivers/media/common/tuners 11ccflags-y += -I$(srctree)/drivers/media/common/tuners
12ccflags-y += -Idrivers/media/dvb/dvb-core 12ccflags-y += -I$(srctree)/drivers/media/dvb/dvb-core
13ccflags-y += -Idrivers/media/dvb/frontends 13ccflags-y += -I$(srctree)/drivers/media/dvb/frontends
14 14