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 20:53:28 -0400 |
commit | 7f5b4deabadafcf1a5af491990a3cbf741d4959b (patch) | |
tree | b6f73caa7a9b0c97f3c3117cd80822cebaefd269 /configure.in | |
parent | 86dad78a82295277de70a1cd1e2efca65514eabf (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 83fb2b3d32d1..1ab3c99091b8 100755 --- a/configure.in +++ b/configure.in @@ -2871,7 +2871,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]) |