diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2017-01-09 13:53:20 +0100 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2017-01-09 14:03:39 +0100 |
commit | 245349ddaa51630e1dfec4037c0b8dd2f51e9651 (patch) | |
tree | 53bc687978e526901fa7faab76cff0723443df79 | |
parent | 9dd7999a480b2c9af652fbd0cd2d68df8d16e60d (diff) |
Add missing "test" to -Og configure check
Change-Id: Ida6cc4fa96b60e50c261aa2c81fb6d2fc0484b10
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 9f266a89ae1a..e808f1424409 100644 --- a/configure.ac +++ b/configure.ac @@ -3764,7 +3764,7 @@ if test "$GCC" = "yes"; then fi # clang as of version 4.0.0 (trunk 289424) doesn't do this very well (missing locals, bad param info in stack frame) - if "$COM_IS_CLANG" != "TRUE"; then + if test "$COM_IS_CLANG" != "TRUE"; then AC_MSG_CHECKING([whether $CC supports -Og]) # Note that clang-3.1 reports a real error for this option # so we do not need a special case for clang<=3.1 as above. |