aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Allen <[email protected]>2016-05-14 16:42:29 -0500
committerMark Allen <[email protected]>2016-05-14 16:42:29 -0500
commit599a78887f402aeaf30d4fb0b90fe1198e1c3cf9 (patch)
tree373231cc12874ea9b1a47a6c83f780ecd8c64640
parent0265f691151c5e44f5f0354f561a9acb6544eb87 (diff)
parent9f6757c67cd5511fae52eb8f1edfed8654a4df10 (diff)
downloadkerl-599a78887f402aeaf30d4fb0b90fe1198e1c3cf9.tar.gz
kerl-599a78887f402aeaf30d4fb0b90fe1198e1c3cf9.tar.bz2
kerl-599a78887f402aeaf30d4fb0b90fe1198e1c3cf9.zip
Merge pull request #132 from josevalim/patch-1
Remove Lion support code and stop setting CFLAGS
-rwxr-xr-xkerl25
1 files changed, 0 insertions, 25 deletions
diff --git a/kerl b/kerl
index 403f797..cd31b21 100755
--- a/kerl
+++ b/kerl
@@ -224,19 +224,6 @@ check_releases()
fi
}
-KERL_NO_LION_SUPPORT="R10B-0 R10B-2 R10B-3 R10B-4 R10B-5 R10B-6 R10B-7
-R10B-8 R10B-9 R11B-0 R11B-1 R11B-2 R11B-3 R11B-4 R11B-5 R12B-0 R12B-1
-R12B-2 R12B-3 R12B-4 R12B-5 R13A R13B R13B01 R13B02 R13B03 R13B04 R14A R14B R14B01 R14B02 R14B03"
-
-lion_support() {
- for v in $KERL_NO_LION_SUPPORT; do
- if [ "$v" = "$1" ]; then
- return 1
- fi
- done
- return 0
-}
-
is_valid_release()
{
check_releases
@@ -444,18 +431,6 @@ _do_build()
*)
;;
esac
-
- if [ "$(gcc --version 2>/dev/null | grep -i -c llvm)" = "1" ]; then
- if lion_support "$1"; then
- KERL_CONFIGURE_OPTIONS="CFLAGS=-O0 $KERL_CONFIGURE_OPTIONS"
- else
- if [ -x "$(which gcc-4.2)" ]; then
- KERL_CONFIGURE_OPTIONS="CC=gcc-4.2 $KERL_CONFIGURE_OPTIONS"
- else
- KERL_CONFIGURE_OPTIONS="CC=llvm-gcc-4.2 CFLAGS=-O0 $KERL_CONFIGURE_OPTIONS"
- fi
- fi
- fi
;;
*)
;;