Skip to content
Snippets Groups Projects
Commit ca20ca54 authored by xiangbin li's avatar xiangbin li Committed by Daniel Stenberg
Browse files

MacOSX-Framework: sdk regex fix for sdk 10.10 and later

closes #507
parent d9a1776b
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@ else
ARCHES64='-arch x86_64'
#We "know" that 10.4 and earlier do not support 64bit
OLD_SDK64=`ls $SDK_PATH|egrep -v "10.[0-4]"|head -1`
NEW_SDK64=`ls -r $SDK_PATH|egrep -v "10.[0-4]"|head -1`
NEW_SDK64=`ls -r $SDK_PATH|egrep -v "10.[0-4][^0-9]" | head -1`
if test $USE_OLD -gt 0
then
SDK64=$OLD_SDK64
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment