The current Makefile ends up ignoring the system CPPFLAGS settings, so make sure we append the variable. Also, the old metadata logic has a typo with the flag name. Signed-off-by: Mike Frysinger <vapier@xxxxxxxxxx> --- Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 315455b..704b374 100644 --- a/Makefile +++ b/Makefile @@ -48,12 +48,10 @@ CWFLAGS += -Wp,-D_FORTIFY_SOURCE=2 -O endif ifdef DEBIAN -CPPFLAGS := -DDEBIAN -else -CPPFLAGS := +CPPFLAGS += -DDEBIAN endif ifdef DEFAULT_OLD_METADATA - CPPFLAG += -DDEFAULT_OLD_METADATA + CPPFLAGS += -DDEFAULT_OLD_METADATA DEFAULT_METADATA=0.90 else DEFAULT_METADATA=1.2 -- 1.7.9.7 -- To unsubscribe from this list: send the line "unsubscribe linux-raid" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html