diff options
author | Dimitri Duc <dimitri.duc@gmail.com> | 2011-04-25 15:02:50 +0200 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2011-04-25 21:31:39 -0400 |
commit | 6431edd83c7eb12d55e9f1e814ecfe265907e8c4 (patch) | |
tree | aae785f29710170ecd4cc3fa7db7bc2d55857dac /configure.in | |
parent | f6c6718836db06b01b00bfa7cfebb9b61376b3d6 (diff) |
Fixed incorrect bracket format.
Diffstat (limited to 'configure.in')
-rwxr-xr-x | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 8ba8d4ff9..8624333bf 100755 --- a/configure.in +++ b/configure.in @@ -2912,7 +2912,7 @@ elif test "$enable_ccache_skip" = "auto" ; then save_CXXFLAGS=$CXXFLAGS CXXFLAGS="$CXXFLAGS --ccache-skip -O2" dnl an empty program will do, we're checking the compiler flags - AC_COMPILE_IFELSE(AC_LANG_PROGRAM([],[]), + AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])], [use_ccache=yes], [use_ccache=no]) if test $use_ccache = yes ; then AC_MSG_RESULT([yes, will enable --ccache-skip]) |