diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2006-04-04 12:16:30 -0400 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2006-04-04 12:16:30 -0400 |
commit | 36a1860e0d188401c2fd2697bab9024ba5ecd5a0 (patch) | |
tree | b474410f4f683aacc860762532051d31dc5fb7a1 /linux/drivers/media/video/bt8xx/Makefile | |
parent | cef164ebf464c7b7072b4c17c1056d95a8071581 (diff) | |
download | mediapointer-dvb-s2-36a1860e0d188401c2fd2697bab9024ba5ecd5a0.tar.gz mediapointer-dvb-s2-36a1860e0d188401c2fd2697bab9024ba5ecd5a0.tar.bz2 |
kbuild: use relative path to -I
From: Sam Ravnborg <sam@mars.ravnborg.org>
Date: Tue, 4 Apr 2006 14:56:10 +0000 (+0200)
Subject: kbuild: use relative path to -I
X-Git-Url: http://kernel.org/git/?p=linux/kernel/git/sam/kbuild-bugfix.git;a=commitdiff;h=b46da0567d3baa6783106e7463801292cdc79ddd
kbuild: use relative path to -I
Using a relative path has the advantage that when the kernel source
tree is moved the relevant .o files will not be rebuild just because
the path to the kernel src has changed.
This also got rid of a user of TOPDIR - which has been deprecated for a long time now.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/video/bt8xx/Makefile')
-rw-r--r-- | linux/drivers/media/video/bt8xx/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/bt8xx/Makefile b/linux/drivers/media/video/bt8xx/Makefile index 94350f21c..db641a36b 100644 --- a/linux/drivers/media/video/bt8xx/Makefile +++ b/linux/drivers/media/video/bt8xx/Makefile @@ -9,4 +9,4 @@ bttv-objs := bttv-driver.o bttv-cards.o bttv-if.o \ obj-$(CONFIG_VIDEO_BT848) += bttv.o EXTRA_CFLAGS += -I$(src)/.. -EXTRA_CFLAGS += -I$(srctree)/drivers/media/dvb/dvb-core +EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-core |