about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJonathan Boyett <jonathan@failingservers.com>2014-09-15 17:08:04 -0400
committerJonathan Boyett <jonathan@failingservers.com>2014-09-15 17:08:04 -0400
commit53c3b830704f76e2a41fa5e68770f060362c5596 (patch)
tree0fd3b1bb1ce44a0490c7d74098127a8896ec6942
parent382fc4575925984eca66fc6498569461732f3c1d (diff)
downloadrust-53c3b830704f76e2a41fa5e68770f060362c5596.tar.gz
rust-53c3b830704f76e2a41fa5e68770f060362c5596.zip
add missing semicolon to fix configure on darwin
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 3d8f0d863f5..17534ee6c3d 100755
--- a/configure
+++ b/configure
@@ -636,7 +636,7 @@ then
             # check that gcc, cc and g++ all point to the same compiler.
             # note that for xcode 5, g++ points to clang, not clang++
             if !((chk_cc gcc clang  && chk_cc g++ clang) ||
-                (chk_cc gcc gcc  &&( chk_cc g++ g++ || chk g++ gcc))) then
+                (chk_cc gcc gcc  &&( chk_cc g++ g++ || chk g++ gcc))); then
                 err "the gcc and g++ in your path point to different compilers.
     Check which versions are in your path with gcc --version and g++ --version.
     To resolve this problem, either fix your PATH  or run configure with --enable-clang"