Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Use 10.9 as MACOSX_DEPLOYMENT_TARGET on 10.10
Browse files Browse the repository at this point in the history
  • Loading branch information
vbraun committed Oct 23, 2014
1 parent 36c150e commit 193836c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/bin/sage-env
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,11 @@ if [ `uname` = "Darwin" ]; then
# #7095 for an example.
MACOSX_VERSION=`uname -r | awk -F. '{print $1}'`
MACOSX_DEPLOYMENT_TARGET=10.$[$MACOSX_VERSION-4]
if [ $MACOSX_DEPLOYMENT_TARGET = '10.10' ]; then
# Workaround for the libtool version detection bug
# See http://trac.sagemath.org/ticket/17204
MACOSX_DEPLOYMENT_TARGET=10.9
fi
export MACOSX_DEPLOYMENT_TARGET
fi

Expand Down

0 comments on commit 193836c

Please sign in to comment.