diff options
| author | Jonathan Boyett <jonathan@failingservers.com> | 2014-09-15 17:08:04 -0400 |
|---|---|---|
| committer | Jonathan Boyett <jonathan@failingservers.com> | 2014-09-15 17:08:04 -0400 |
| commit | 53c3b830704f76e2a41fa5e68770f060362c5596 (patch) | |
| tree | 0fd3b1bb1ce44a0490c7d74098127a8896ec6942 | |
| parent | 382fc4575925984eca66fc6498569461732f3c1d (diff) | |
| download | rust-53c3b830704f76e2a41fa5e68770f060362c5596.tar.gz rust-53c3b830704f76e2a41fa5e68770f060362c5596.zip | |
add missing semicolon to fix configure on darwin
| -rwxr-xr-x | configure | 2 |
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" |
