summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/Makefile
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-11-25 23:39:40 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-11-25 23:40:33 +0100
commit836b35dd65790f235e782529e43b8fd3f7bfd798 (patch)
tree8b07475c8c0e66950af63857498d799f6143b7aa /crawl-ref/source/Makefile
parent2dbd2a41df8c77fdb0051d772daf94029f966c2e (diff)
downloadcrawl-ref-836b35dd65790f235e782529e43b8fd3f7bfd798.tar.gz
crawl-ref-836b35dd65790f235e782529e43b8fd3f7bfd798.zip
Hopefully work around recent mingw linking libwinpthread-1.dll dynamically.
Diffstat (limited to 'crawl-ref/source/Makefile')
-rw-r--r--crawl-ref/source/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/Makefile b/crawl-ref/source/Makefile
index 506a1fa909..5f7efc388f 100644
--- a/crawl-ref/source/Makefile
+++ b/crawl-ref/source/Makefile
@@ -201,8 +201,8 @@ ifneq (,$(findstring MINGW,$(uname_S)))
BUILD_SDLIMAGE = YesPlease
BUILD_LIBPNG = YesPlease
endif
- ifeq ($(shell gcc -v -static-libstdc++ 2>&1 | grep 'unrecognized option'),)
- EXTRA_LIBS += -static-libgcc -static-libstdc++
+ ifeq ($(shell gcc -v -static -static-libstdc++ 2>&1 | grep 'unrecognized option'),)
+ EXTRA_LIBS += -static -static-libgcc -static-libstdc++
endif
COPY_FONTS = yes
endif