diff options
author | Leah Neukirchen <leah@vuxu.org> | 2017-09-19 14:50:13 +0200 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2017-09-19 14:50:13 +0200 |
commit | 6557dec05b6f013f9bef392f95187b44f3d75831 (patch) | |
tree | 5afecc9b13546a8e6ba403f969cbe4ece3302e9f | |
parent | 3ebe373309215120a25df314b9d6e625070091cb (diff) | |
download | mblaze-6557dec05b6f013f9bef392f95187b44f3d75831.tar.gz mblaze-6557dec05b6f013f9bef392f95187b44f3d75831.tar.xz mblaze-6557dec05b6f013f9bef392f95187b44f3d75831.zip |
GNUmakefile: fix OpenBSD build
By sunil@nimmagadda.net.
-rw-r--r-- | GNUmakefile | 2 |
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 |