aboutsummaryrefslogtreecommitdiff
path: root/src/makefile.linux-mingw
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2012-09-27 04:10:21 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2012-09-27 04:10:21 +0200
commit14ac0adcc7c0224a467e38bbd4ebf39d824ada8d (patch)
treee6cf583559611d851119f0ad3e89d8879108e830 /src/makefile.linux-mingw
parent5a1a3622153662b948537ad950be07a49864f82e (diff)
downloadbitcoin-14ac0adcc7c0224a467e38bbd4ebf39d824ada8d.tar.xz
Remove -Wformat* warnings from makefiles
commit 5a1a3622 effectively enabled these warnings, but they need to be fixed before being enabled in the general build scripts.
Diffstat (limited to 'src/makefile.linux-mingw')
-rw-r--r--src/makefile.linux-mingw2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefile.linux-mingw b/src/makefile.linux-mingw
index 2804f14055..634a47b752 100644
--- a/src/makefile.linux-mingw
+++ b/src/makefile.linux-mingw
@@ -32,7 +32,7 @@ LIBS= \
DEFS=-D_MT -DWIN32 -D_WINDOWS -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE
DEBUGFLAGS=-g
-CFLAGS=-O2 -w -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS)
+CFLAGS=-O2 -w -Wall -Wextra -Wno-format -Wno-format-security -Wno-unused-parameter $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS)
LDFLAGS=-Wl,--dynamicbase -Wl,--nxcompat
TESTDEFS = -DTEST_DATA_DIR=$(abspath test/data)