summaryrefslogtreecommitdiff
path: root/config-scripts
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2018-12-05 12:37:23 -0500
committerMichael R Sweet <michael.r.sweet@gmail.com>2018-12-05 12:37:23 -0500
commitc028bdf75e21dcdb2d24f097e585006b23af43a1 (patch)
tree1b0b6cf2fdff6466bbb9013f7f3575d798190eee /config-scripts
parent3dee5db7b96baf423c4325e133ef22a0fbe980eb (diff)
downloadcups-c028bdf75e21dcdb2d24f097e585006b23af43a1.tar.gz
Fix bogus indentation.
Diffstat (limited to 'config-scripts')
-rw-r--r--config-scripts/cups-compiler.m416
1 files changed, 8 insertions, 8 deletions
diff --git a/config-scripts/cups-compiler.m4 b/config-scripts/cups-compiler.m4
index 7cd440ff4..89176fd3b 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