]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Update configure script.
authorMichael R Sweet <michael.r.sweet@gmail.com>
Wed, 5 Dec 2018 17:38:06 +0000 (12:38 -0500)
committerMichael R Sweet <michael.r.sweet@gmail.com>
Wed, 5 Dec 2018 17:38:06 +0000 (12:38 -0500)
configure

index 77bff4540bff1ecf294e3506cde535d6df52fce4..5ab7db685ef41c578e2655f15b302cf76fe12e27 100755 (executable)
--- a/configure
+++ b/configure
@@ -6930,15 +6930,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