Skip to content

Commit

Permalink
Don't error out on deprecations.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael R Sweet committed Dec 6, 2018
1 parent c29d06f commit 7d730d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config-scripts/cups-compiler.m4
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ if test -n "$GCC"; then

# Additional warning options for development testing...
if test -d .git; then
WARNING_OPTIONS="-Werror $WARNING_OPTIONS"
WARNING_OPTIONS="-Werror -Wno-error=deprecated-declarations $WARNING_OPTIONS"
fi
else
# Add vendor-specific compiler options...
Expand Down
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -7063,7 +7063,7 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext

# Additional warning options for development testing...
if test -d .git; then
WARNING_OPTIONS="-Werror $WARNING_OPTIONS"
WARNING_OPTIONS="-Werror -Wno-error=deprecated-declarations $WARNING_OPTIONS"
fi
else
# Add vendor-specific compiler options...
Expand Down

0 comments on commit 7d730d0

Please sign in to comment.