summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2012-11-13 13:17:00 -0500
committerColin Walters <walters@verbum.org>2012-11-13 13:17:00 -0500
commita550d04a1b3552373f882f1482166c942e490451 (patch)
tree4a5e1212adbab6b005cd32afdd97b1baff5b649b
parent1e23c485c40f539ec66087728aa4d6fcc121c6a4 (diff)
downloadgnome-common-a550d04a1b3552373f882f1482166c942e490451.tar.gz
compiler-warnings: Fix tabs->spaces
Per https://bugzilla.gnome.org/show_bug.cgi?id=688192
-rw-r--r--macros2/gnome-compiler-flags.m438
1 files changed, 19 insertions, 19 deletions
diff --git a/macros2/gnome-compiler-flags.m4 b/macros2/gnome-compiler-flags.m4
index c190137..4cb24aa 100644
--- a/macros2/gnome-compiler-flags.m4
+++ b/macros2/gnome-compiler-flags.m4
@@ -23,8 +23,8 @@ AC_DEFUN([GNOME_COMPILE_WARNINGS],[
dnl overridden on a per-project basis with -Wno-foo.
base_warn_flags=" \
-Wall \
- -Wstrict-prototypes \
- -Wnested-externs \
+ -Wstrict-prototypes \
+ -Wnested-externs \
"
dnl These compiler flags typically indicate very broken or suspicious
@@ -32,31 +32,31 @@ AC_DEFUN([GNOME_COMPILE_WARNINGS],[
dnl just not default because gcc compiles a lot of legacy code.
dnl We choose to make this set into explicit errors.
base_error_flags=" \
- -Werror=missing-prototypes \
- -Werror=implicit-function-declaration \
- -Werror=pointer-arith \
- -Werror=init-self \
- -Werror=format-security \
- -Werror=format=2 \
- -Werror=missing-include-dirs \
+ -Werror=missing-prototypes \
+ -Werror=implicit-function-declaration \
+ -Werror=pointer-arith \
+ -Werror=init-self \
+ -Werror=format-security \
+ -Werror=format=2 \
+ -Werror=missing-include-dirs \
"
case "$enable_compile_warnings" in
no)
- warning_flags=
- ;;
+ warning_flags=
+ ;;
minimum)
- warning_flags="-Wall"
- ;;
+ warning_flags="-Wall"
+ ;;
yes)
- warning_flags="$base_warn_flags $base_error_flags"
- ;;
+ warning_flags="$base_warn_flags $base_error_flags"
+ ;;
maximum|error)
- warning_flags="$base_warn_flags $base_error_flags"
- ;;
+ warning_flags="$base_warn_flags $base_error_flags"
+ ;;
*)
- AC_MSG_ERROR(Unknown argument '$enable_compile_warnings' to --enable-compile-warnings)
- ;;
+ AC_MSG_ERROR(Unknown argument '$enable_compile_warnings' to --enable-compile-warnings)
+ ;;
esac
if test "$enable_compile_warnings" = "error" ; then