net: lmc: remove -I. header search path

The header search path -I. in kernel Makefiles is very suspicious;
it allows the compiler to search for headers in the top of $(srctree),
where obviously no header file exists.

I was able to build without this header search path.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Masahiro Yamada 2019-01-25 23:22:29 +09:00 committed by David S. Miller
parent 7304720d70
commit 085c4c7dd2
1 changed files with 1 additions and 1 deletions

View File

@ -14,4 +14,4 @@ lmc-objs := lmc_debug.o lmc_media.o lmc_main.o lmc_proto.o
# -DDEBUG \
# -DLMC_PACKET_LOG
ccflags-y := -I. $(DBGDEF)
ccflags-y := $(DBGDEF)