Skip to content

Commit

Permalink
kbuild: use relative path to -I
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Sam Ravnborg committed Apr 4, 2006
1 parent 1417ae0 commit b46da05
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion arch/ppc/boot/lib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#

CFLAGS_kbd.o := -Idrivers/char
CFLAGS_vreset.o := -I$(srctree)/arch/ppc/boot/include
CFLAGS_vreset.o := -Iarch/ppc/boot/include

zlib := infblock.c infcodes.c inffast.c inflate.c inftrees.c infutil.c

Expand Down
2 changes: 1 addition & 1 deletion arch/sparc/math-emu/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
obj-y := math.o

EXTRA_AFLAGS := -ansi
EXTRA_CFLAGS = -I. -I$(TOPDIR)/include/math-emu -w
EXTRA_CFLAGS = -I. -Iinclude/math-emu -w
2 changes: 1 addition & 1 deletion drivers/media/video/bt8xx/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit b46da05

Please sign in to comment.