Add customs CFLAGS to build, to workaround issue with umemcache
This commit is contained in:
parent
700d23aed4
commit
1f32e71350
7
Makefile
7
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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user