usb: gadget: use $(srctree) instead of $(PWD) for includes

Using $(PWD) breaks builds when make was invoked from outside
of the kernel tree.

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
Yegor Yefremov 2014-08-27 10:42:53 +02:00 committed by Felipe Balbi
parent b8adc3d1d8
commit fa31409a82
3 changed files with 6 additions and 6 deletions

View File

@ -3,7 +3,7 @@
# #
subdir-ccflags-$(CONFIG_USB_GADGET_DEBUG) := -DDEBUG subdir-ccflags-$(CONFIG_USB_GADGET_DEBUG) := -DDEBUG
subdir-ccflags-$(CONFIG_USB_GADGET_VERBOSE) += -DVERBOSE_DEBUG subdir-ccflags-$(CONFIG_USB_GADGET_VERBOSE) += -DVERBOSE_DEBUG
ccflags-y += -I$(PWD)/drivers/usb/gadget/udc ccflags-y += -I$(srctree)/drivers/usb/gadget/udc
obj-$(CONFIG_USB_LIBCOMPOSITE) += libcomposite.o obj-$(CONFIG_USB_LIBCOMPOSITE) += libcomposite.o
libcomposite-y := usbstring.o config.o epautoconf.o libcomposite-y := usbstring.o config.o epautoconf.o

View File

@ -2,8 +2,8 @@
# USB peripheral controller drivers # USB peripheral controller drivers
# #
ccflags-y := -I$(PWD)/drivers/usb/gadget/ ccflags-y := -I$(srctree)/drivers/usb/gadget/
ccflags-y += -I$(PWD)/drivers/usb/gadget/udc/ ccflags-y += -I$(srctree)/drivers/usb/gadget/udc/
# USB Functions # USB Functions
usb_f_acm-y := f_acm.o usb_f_acm-y := f_acm.o

View File

@ -2,9 +2,9 @@
# USB gadget drivers # USB gadget drivers
# #
ccflags-y := -I$(PWD)/drivers/usb/gadget/ ccflags-y := -I$(srctree)/drivers/usb/gadget/
ccflags-y += -I$(PWD)/drivers/usb/gadget/udc/ ccflags-y += -I$(srctree)/drivers/usb/gadget/udc/
ccflags-y += -I$(PWD)/drivers/usb/gadget/function/ ccflags-y += -I$(srctree)/drivers/usb/gadget/function/
g_zero-y := zero.o g_zero-y := zero.o
g_audio-y := audio.o g_audio-y := audio.o