From 5769416fbe86aa670e741ce23bd7422c4cd3d50c Mon Sep 17 00:00:00 2001 From: Christoph Kottke Date: Fri, 29 May 2020 07:30:45 +0200 Subject: [PATCH] update for PR #53 - the quotes need to preserve, i think compile tested on x86_64 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 53d5d84..58ba78d 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ endif DEBUGFLAGS := -g -D_DEBUG RELEASEFLAGS := -DNDEBUG -DwxDEBUG_LEVEL=0 export CXX := $(shell wx-config --cxx) -export CFLAGS := -O2 -Wall $(shell wx-config --cxxflags) -DLOG_DIR='$(LOGDIR)' -DCONF_DIR='$(CONFDIR)' -DDATA_DIR='$(DATADIR)' +export CFLAGS := -O2 -Wall $(shell wx-config --cxxflags) -DLOG_DIR='"$(LOGDIR)"' -DCONF_DIR='"$(CONFDIR)"' -DDATA_DIR='"$(DATADIR)"' ifeq ($(BUILD), debug) export CFLAGS := $(CFLAGS) $(DEBUGFLAGS) else ifeq ($(BUILD), release)