summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2013-11-25 11:13:02 -0500
committerPeter Hutterer <peter.hutterer@who-t.net>2013-11-26 09:53:08 +1000
commit81780fc4d2b75039c5c12516bfc02e50c5dd107e (patch)
tree6c25fea88e321605b18d1022309f621d878214a3
parentd15856c77a6e62de7c7c673a1598b427f5d483d8 (diff)
downloadlibevdev-81780fc4d2b75039c5c12516bfc02e50c5dd107e.tar.gz
test-compile-pedantic: replace -Wpedantic with -pedantic
-Wpedantic is a relatively new option, with -pedantic being the old version of it that works on older gcc versions too. Signed-off-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r--test/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
index 8cdd370..f3102ea 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -34,7 +34,7 @@ test_libevdev_SOURCES = \
test_libevdev_LDADD = $(CHECK_LIBS) $(GCOV_LDFLAGS)
test_compile_pedantic_SOURCES = test-compile-pedantic.c
-test_compile_pedantic_CFLAGS = $(AM_CPPFLAGS) -Wpedantic -Werror -std=c90
+test_compile_pedantic_CFLAGS = $(AM_CPPFLAGS) -pedantic -Werror -std=c90
if GCOV_ENABLED