diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2007-09-12 16:22:14 +0000 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2007-09-12 16:22:14 +0000 |
commit | 8e66994699dcef5618c0f55a81eca5fda8ff83e2 (patch) | |
tree | 1b61e69ecc690eddc75121609e49f0de334e335b | |
parent | 8b1f0fa4f72c0426090d2ba3d9691ede3d4412bf (diff) |
Force coding style checks to be non-fatal until we get all the MACRO(foo) invocations replaced with MACRO (foo)
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 8e91a0847..ce33faf15 100644 --- a/configure.ac +++ b/configure.ac @@ -83,6 +83,8 @@ AC_ARG_ENABLE(coding-style-checks, [don't check coding style using grep]), [ENABLE_CODING_STYLE_CHECKS=$enableval], [ENABLE_CODING_STYLE_CHECKS=yes]) ]) +# FIXME: until we fix all the MACRO(foo) invocations, the above is switched off +ENABLE_CODING_STYLE_CHECKS=no if test x$enable_debug = xyes; then AC_DEFINE(ENABLE_DEBUG, [], [Enable debug code]) |