From: Luis R. Rodriguez Date: Mon, 17 May 2010 21:39:57 +0000 (-0700) Subject: Fix the syntax for the defines passed for compat X-Git-Tag: v2.6.37-rc1-1~53 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=bd4fbdf07da8a1ff9c89e18221ffdafcd2ad9a69;p=~emulex%2Ftmp%2Fcompat%2F.git Fix the syntax for the defines passed for compat Spaces would not have worked without this. Signed-off-by: Luis R. Rodriguez --- diff --git a/Makefile b/Makefile index 46fda21..04877c5 100644 --- a/Makefile +++ b/Makefile @@ -43,10 +43,10 @@ obj-y += compat/ NOSTDINC_FLAGS := -I$(M)/include/ \ -include $(M)/include/linux/compat-2.6.h \ $(CFLAGS) \ - -DCOMPAT_BASE_TREE=\"$(COMPAT_BASE_TREE)\" \ - -DCOMPAT_BASE_TREE_VERSION=\"$(COMPAT_BASE_TREE_VERSION)\" \ + -DCOMPAT_BASE_TREE="\"$(COMPAT_BASE_TREE)\"" \ + -DCOMPAT_BASE_TREE_VERSION="\"$(COMPAT_BASE_TREE_VERSION)\"" \ -DCOMPAT_PROJECT="\"Generic kernel\"" \ - -DCOMPAT_VERSION=\"$(COMPAT_VERSION)\" + -DCOMPAT_VERSION="\"$(COMPAT_VERSION)\"" modules: $(MAKE) -C $(KLIB_BUILD) M=$(PWD) modules