From 57ed3553613dc671cf2845d7f2a0ee81fcb340ac Mon Sep 17 00:00:00 2001 From: Peter Colberg Date: Thu, 23 Jun 2016 23:32:31 -0400 Subject: [PATCH] Fix broken compilation with ARCH=i686 `override CFLAGS_add` caused make to discard any further assignments. This regression stems from commit ebe1db3ce4ff566ec857a7951abdd0305cd40413. --- Make.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Make.inc b/Make.inc index a51001a..b64703e 100644 --- a/Make.inc +++ b/Make.inc @@ -111,7 +111,7 @@ endif ifeq ($(OS), WINNT) SHLIB_EXT = dll SONAME_FLAG = -soname - override CFLAGS_add += -nodefaultlibs + CFLAGS_add += -nodefaultlibs shlibdir = $(bindir) else ifeq ($(OS), Darwin) @@ -121,7 +121,7 @@ else SHLIB_EXT = so SONAME_FLAG = -soname endif - override CFLAGS_add += -fPIC + CFLAGS_add += -fPIC shlibdir = $(libdir) endif