about summary refs log tree commit diff
path: root/GNUmakefile
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2017-09-19 14:50:13 +0200
committerLeah Neukirchen <leah@vuxu.org>2017-09-19 14:50:13 +0200
commit6557dec05b6f013f9bef392f95187b44f3d75831 (patch)
tree5afecc9b13546a8e6ba403f969cbe4ece3302e9f /GNUmakefile
parent3ebe373309215120a25df314b9d6e625070091cb (diff)
downloadmblaze-6557dec05b6f013f9bef392f95187b44f3d75831.tar.gz
mblaze-6557dec05b6f013f9bef392f95187b44f3d75831.tar.xz
mblaze-6557dec05b6f013f9bef392f95187b44f3d75831.zip
GNUmakefile: fix OpenBSD build
By sunil@nimmagadda.net.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 6d96d60..d730bd1 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -6,7 +6,7 @@ OS := $(shell uname)
 
 ifeq ($(OS),OpenBSD)
 LOCALBASE=/usr/local
-CFLAGS+=-I$(LOCALBASE)/include -pthread
+override CFLAGS+=-I$(LOCALBASE)/include -pthread
 LDLIBS=-L$(LOCALBASE)/lib -liconv -pthread
 endif