From 4fdcb1642336fb4a8d127067ebf1de528e0a2843 Mon Sep 17 00:00:00 2001 From: Argent77 Date: Sat, 6 Sep 2014 14:17:50 +0200 Subject: [PATCH] Bugfix in Makefile --- tileconv/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tileconv/Makefile b/tileconv/Makefile index 2b62354..b136a9c 100644 --- a/tileconv/Makefile +++ b/tileconv/Makefile @@ -12,7 +12,7 @@ EXECUTABLE = tileconv ifeq ($(OS),Windows_NT) EXT = .exe - RM ?= del + RM = del LDFLAGS += -static ifeq ($(USE_WINTHREADS),1) CXXFLAGS += -mwindows -DUSE_WINTHREADS=1 @@ -20,7 +20,7 @@ ifeq ($(OS),Windows_NT) LIBS += -pthread endif else - RM ?= rm + RM = rm LIBS += -pthread ifeq ($(shell uname -s),Darwin) # A few hacks to enable proper threading support