datapath: Use ccflags-y instead of deprecated EXTRA_CFLAGS
authorThomas Graf <tgraf@noironetworks.com>
Wed, 26 Nov 2014 14:52:31 +0000 (15:52 +0100)
committerPravin B Shelar <pshelar@nicira.com>
Mon, 1 Dec 2014 22:42:29 +0000 (14:42 -0800)
This allows users to pass in additional compiler flags through the
environment variable EXTRA_CFLAGS, e.g.

   make EXTRA_CFLAGS=-Wno-error=foo V=1

Reported-by: Alexandru Ardelean <ardeleanalex@gmail.com>
Signed-off-by: Thomas Graf <tgraf@noironetworks.com>
Acked-by: Pravin B Shelar <pshelar@nicira.com>
datapath/linux/Kbuild.in

index 6f6f65f..cb98c11 100644 (file)
@@ -7,11 +7,11 @@ export VERSION = @VERSION@
 include $(srcdir)/../Modules.mk
 include $(srcdir)/Modules.mk
 
-EXTRA_CFLAGS := -DVERSION=\"$(VERSION)\"
-EXTRA_CFLAGS += -I$(srcdir)/..
-EXTRA_CFLAGS += -I$(builddir)/..
-EXTRA_CFLAGS += -g
-EXTRA_CFLAGS += -include $(builddir)/kcompat.h
+ccflags-y := -DVERSION=\"$(VERSION)\"
+ccflags-y += -I$(srcdir)/..
+ccflags-y += -I$(builddir)/..
+ccflags-y += -g
+ccflags-y += -include $(builddir)/kcompat.h
 
 # These include directories have to go before -I$(KSRC)/include.
 # NOSTDINC_FLAGS just happens to be a variable that goes in the