From 1f32e713502f96ab7f9c1cec8e788ccc4fb72e12 Mon Sep 17 00:00:00 2001 From: Ryan Kelly Date: Wed, 22 Oct 2014 15:03:19 +1100 Subject: [PATCH] Add customs CFLAGS to build, to workaround issue with umemcache --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d1259df..e9c0d63 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,12 @@ TOOLS := $(addprefix $(ENV)/bin/,flake8 nosetests) # Hackety-hack around OSX system python bustage. # The need for this should go away with a future osx/xcode update. ARCHFLAGS = -Wno-error=unused-command-line-argument-hard-error-in-future -INSTALL = ARCHFLAGS=$(ARCHFLAGS) $(ENV)/bin/pip install + +# Hackety-hack around errors duing compile of ultramemcached. +CFLAGS = -Wno-error + +INSTALL = CFLAGS=$(CFLAGS) ARCHFLAGS=$(ARCHFLAGS) $(ENV)/bin/pip install + .PHONY: all all: build