diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-09-30 15:26:41 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-10-01 19:45:42 +0200 |
| commit | 827d8c2e0cc08bae775c191a44d3574a7909dc3c (patch) | |
| tree | e86eac44aec2bab7737a44bf8a6a012ec93f9405 /src/makefile.unix | |
| parent | fix -Wformat warnings all over the source (diff) | |
| download | discoin-827d8c2e0cc08bae775c191a44d3574a7909dc3c.tar.xz discoin-827d8c2e0cc08bae775c191a44d3574a7909dc3c.zip | |
Revert "Remove -Wformat* warnings from makefiles"
This reverts commit 14ac0adcc7c0224a467e38bbd4ebf39d824ada8d.
Diffstat (limited to 'src/makefile.unix')
| -rw-r--r-- | src/makefile.unix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefile.unix b/src/makefile.unix index b73ce2833..a41b57b4f 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -93,7 +93,7 @@ DEBUGFLAGS=-g # CXXFLAGS can be specified on the make command line, so we use xCXXFLAGS that only # adds some defaults in front. Unfortunately, CXXFLAGS=... $(CXXFLAGS) does not work. -xCXXFLAGS=-O2 -pthread -Wall -Wextra -Wno-format -Wno-format-security -Wno-unused-parameter \ +xCXXFLAGS=-O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter \ $(DEBUGFLAGS) $(DEFS) $(HARDENING) $(CXXFLAGS) # LDFLAGS can be specified on the make command line, so we use xLDFLAGS that only |