Skip to content

Commit 4fdcb16

Browse files
author
Argent77
committed
Bugfix in Makefile
1 parent f2f8ec5 commit 4fdcb16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tileconv/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ EXECUTABLE = tileconv
1212

1313
ifeq ($(OS),Windows_NT)
1414
EXT = .exe
15-
RM ?= del
15+
RM = del
1616
LDFLAGS += -static
1717
ifeq ($(USE_WINTHREADS),1)
1818
CXXFLAGS += -mwindows -DUSE_WINTHREADS=1
1919
else
2020
LIBS += -pthread
2121
endif
2222
else
23-
RM ?= rm
23+
RM = rm
2424
LIBS += -pthread
2525
ifeq ($(shell uname -s),Darwin)
2626
# A few hacks to enable proper threading support

0 commit comments

Comments
 (0)