1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Author: Andreas Tille <tille@debian.org>
Last-Update: 2015-04-19
Description: Fix lintian error
E: libmems-1.6-dev: pkg-config-bad-directive usr/lib/x86_64-linux-gnu/pkgconfig/libMems-1.6.pc -Wno-deprecated
by not appending "-Wno-deprecated"
--- a/configure.ac
+++ b/configure.ac
@@ -73,7 +73,7 @@ dnl Check what compiler we're using
AM_CONDITIONAL(ICC, test x$CXX = xicc )
EXTRA_CXX_FLAGS=""
if( test x$CC == "xgcc" ) then
- EXTRA_CXX_FLAGS="-Wno-deprecated"
+ EXTRA_CXX_FLAGS=""
fi
AC_SUBST(EXTRA_CXX_FLAGS)
|