From 055265bd474d6f133d5d5c23e92d372d19f8c047 Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Wed, 18 Jun 2014 20:21:39 +0000 Subject: [PATCH] build: fix a typo in configure.ac that had deactivated most warnings. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 7fffa324..a415f18f 100644 --- a/configure.ac +++ b/configure.ac @@ -215,7 +215,7 @@ LOL_TRY_CXXFLAGS(-Wparentheses, [AM_CPPFLAGS="${AM_CPPFLAGS} -Wparentheses"]) LOL_TRY_CXXFLAGS(-Wreorder, [AM_CXXFLAGS="${AM_CXXFLAGS} -Wreorder"]) dnl Disable these warnings because they're annoyingly verbose -LOL_TRY_CXXFLAGS(-Wno-psabi, [AM_CPPFLAGS="${AM_CXXFLAGS} -Wno-psabi"]) +LOL_TRY_CXXFLAGS(-Wno-psabi, [AM_CPPFLAGS="${AM_CPPFLAGS} -Wno-psabi"]) AC_CHECK_LIB(m, sin, MATH_LIBS="${MATH_LIBS} -lm")