Commit c87ceef0 authored by Sam Stephenson's avatar Sam Stephenson
Browse files

Fix Lion conditional

parent fac8c31d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -112,7 +112,7 @@ after_install_package() {

use_gcc42_on_lion() {
  if [ "$(uname -s)" = "Darwin" ]; then
    if [ "$(expr "$(sw_vers -productVersion | cut -f 2 -d .)" \>= 7)" = 0 ]; then
    if [ "$(expr "$(sw_vers -productVersion | cut -f 2 -d .)" \>= 7)" -eq 1 ]; then
      export CC=/usr/bin/gcc-4.2
    fi
  fi