From: Michael R Sweet Date: Wed, 5 Dec 2018 17:37:23 +0000 (-0500) Subject: Fix bogus indentation. X-Git-Tag: v2.3b6~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c028bdf75e21dcdb2d24f097e585006b23af43a1;p=thirdparty%2Fcups.git Fix bogus indentation. --- diff --git a/config-scripts/cups-compiler.m4 b/config-scripts/cups-compiler.m4 index 7cd440ff48..89176fd3bd 100644 --- a/config-scripts/cups-compiler.m4 +++ b/config-scripts/cups-compiler.m4 @@ -102,15 +102,15 @@ if test -n "$GCC"; then # Address sanitizer is a useful tool to use when developing/debugging # code but adds about 2x overhead... - if test x$enable_sanitizer = xyes; then - # Use -fsanitize=address with debugging... + if test x$enable_sanitizer = xyes; then + # Use -fsanitize=address with debugging... OPTIM="$OPTIM -g -fsanitize=address" - else - # Otherwise use the Fortify enhancements to catch any unbounded - # string operations... - CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2" - CXXFLAGS="$CXXFLAGS -D_FORTIFY_SOURCE=2" - fi + else + # Otherwise use the Fortify enhancements to catch any unbounded + # string operations... + CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2" + CXXFLAGS="$CXXFLAGS -D_FORTIFY_SOURCE=2" + fi # Default optimization options... if test -z "$OPTIM"; then