summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2018-12-05 12:38:06 -0500
committerMichael R Sweet <michael.r.sweet@gmail.com>2018-12-05 12:38:06 -0500
commitef4e12b3f9dc6d153ec81fde9c109277685028a4 (patch)
tree4e13728cd0daa54da273ad72dfefa3cdc7f12e5b /configure
parentc028bdf75e21dcdb2d24f097e585006b23af43a1 (diff)
downloadcups-ef4e12b3f9dc6d153ec81fde9c109277685028a4.tar.gz
Update configure script.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure16
1 files changed, 8 insertions, 8 deletions
diff --git a/configure b/configure
index 77bff4540..5ab7db685 100755
--- 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