modules/Makefile has a syntax-error in line 34:
... export EXTRA_CFLAGS+=-DIN_DEV_GET_RTNL;
+= is no valid shell command, this is shellcode, not Makefile syntax. It should read:
... export EXTRA_CFLAGS='${EXTRA_CFLAGS} -DIN_DEV_GET_RTNL';
Log in to post a comment.