From 81780fc4d2b75039c5c12516bfc02e50c5dd107e Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Mon, 25 Nov 2013 11:13:02 -0500 Subject: [PATCH] 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 Signed-off-by: Peter Hutterer --- test/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.34.1