aboutsummaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2009-10-11 05:20:33 +0200
committerJay Berkenbilt <ejb@ql.org>2009-10-11 05:20:33 +0200
commitfe0944a5125f3cfc9ca046d06a4ed2f4990aca80 (patch)
tree5276f2147cd5c70ba0e90d84b12b9283f31140e8 /make
parentf70217a2f6f14d680d84b540517155e84e2c9d94 (diff)
downloadqpdf-fe0944a5125f3cfc9ca046d06a4ed2f4990aca80.tar.zst
remove static-libgcc
git-svn-id: svn+q:///qpdf/trunk@787 71b93d88-0707-0410-a8cf-f5a4172ac649
Diffstat (limited to 'make')
-rw-r--r--make/mingw.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/mingw.mk b/make/mingw.mk
index 92edae05..ae599393 100644
--- a/make/mingw.mk
+++ b/make/mingw.mk
@@ -48,7 +48,7 @@ endef
# Usage: $(call makelib,objs,library,ldflags,libs,current,revision,age)
define makelib
dlltool -l $(2) -D $$(basename `echo $(2) | sed -e 's,/lib\(.*\).a,/\1,'`$(5).dll) $(1); \
- $(CXX) -shared -static-libgcc -o `echo $(2) | sed -e 's,/lib\(.*\).a,/\1,'`$(5).dll \
+ $(CXX) -shared -o `echo $(2) | sed -e 's,/lib\(.*\).a,/\1,'`$(5).dll \
$(1) $(3) $(4)
endef