Skip to content

Commit

Permalink
add missing semicolon to fix configure on darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
saysjonathan committed Sep 15, 2014
1 parent 382fc45 commit 53c3b83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Expand Up @@ -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"
Expand Down

0 comments on commit 53c3b83

Please sign in to comment.