Add -Wno-error=deprecated declarations
Even with --enable-compile-warnings=error, avoid erroring out on deprecations for the moment, since we are hitting many Clutter deprecations and some are hard to fix.
This commit is contained in:
parent
7319b10d72
commit
2e63de5c0a
1 changed files with 1 additions and 1 deletions
|
@ -470,7 +470,7 @@ if test "$enable_compile_warnings" != no ; then
|
|||
if test "$enable_compile_warnings" = error; then
|
||||
case " $CFLAGS " in
|
||||
*[\ \ ]-Werror[\ \ ]*) ;;
|
||||
*) CFLAGS="$CFLAGS -Werror" ;;
|
||||
*) CFLAGS="$CFLAGS -Werror -Wno-error=deprecated-declarations" ;;
|
||||
esac
|
||||
fi
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue