mirror of https://gitee.com/openkylin/linux.git
net: atlantic: fix build when object tree is separate
Driver subfolder files refer parent folder includes in an absolute manner. Makefile contains a -I for this, but apparently that does not work if object tree is separated. Adding srctree to fix that. Signed-off-by: Igor Russkikh <irusskikh@marvell.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
5e46e43c2a
commit
059432495e
|
@ -8,7 +8,7 @@
|
|||
|
||||
obj-$(CONFIG_AQTION) += atlantic.o
|
||||
|
||||
ccflags-y += -I$(src)
|
||||
ccflags-y += -I$(srctree)/$(src)
|
||||
|
||||
atlantic-objs := aq_main.o \
|
||||
aq_nic.o \
|
||||
|
@ -33,4 +33,4 @@ atlantic-objs := aq_main.o \
|
|||
|
||||
atlantic-$(CONFIG_MACSEC) += aq_macsec.o
|
||||
|
||||
atlantic-$(CONFIG_PTP_1588_CLOCK) += aq_ptp.o
|
||||
atlantic-$(CONFIG_PTP_1588_CLOCK) += aq_ptp.o
|
||||
|
|
Loading…
Reference in New Issue