summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
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