summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2015-10-17 14:24:20 -0700
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2015-10-17 14:24:20 -0700
commitcd4eadcc2b3c93ff43817d509ff0f8b3a6db4426 (patch)
treec1daf467e2f5babad9ea9357c657b49a66a6dce2 /Makefile
parent3ac9555d8d8525c73257903023a818f27d4ef086 (diff)
Use -pedantic instead of -Wpedantic
Travis CI strikes once more.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7fe7afa..579f61b 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ EXECUTABLE=$(BUILD)/test
VERSION=$(shell sed -n 's/.*version \(.*\).*/\1/p' src/pugiconfig.hpp)
RELEASE=$(shell git ls-files src docs/*.html docs/*.css docs/samples docs/images scripts contrib readme.txt)
-CXXFLAGS=-g -Wall -Wextra -Werror -Wpedantic -Wundef -Wshadow -Wold-style-cast -Wcast-align
+CXXFLAGS=-g -Wall -Wextra -Werror -pedantic -Wundef -Wshadow -Wold-style-cast -Wcast-align
LDFLAGS=
ifeq ($(config),release)