History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: QB-1858
Type: Bug Bug
Status: Resolved Resolved
Resolution: Fixed
Priority: Major Major
Assignee: Unassigned
Reporter: AlSt
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
QuickBuild

Due to wrong os version detection on mac os x 10.9 (maverick), the wrapper is always started with 32 bit

Created: 25/Nov/13 10:25 AM   Updated: 14/Dec/13 05:39 AM
Component/s: None
Affects Version/s: 5.1.0
Fix Version/s: 5.1.1, 5.1.3

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown
Environment: Mac OS X 10.9


 Description  « Hide
{code}
# Resolve the architecture
if [ "$DIST_OS" = "macosx" ]
then
    OS_VER=`sw_vers | grep 'ProductVersion:' | grep -o '[0-9]*\.[0-9]*\.[0-9]*'`
    DIST_ARCH="universal"
    if [[ "$OS_VER" < "10.5.0" ]]
    then
        DIST_BITS="32"
    else
{code}

On Mac OS X 10.8 it reports:
{code}
minimac08:~ labuser$ sw_vers
ProductName: Mac OS X
ProductVersion: 10.8.4
BuildVersion: 12E55
{code}

However, on Mac OS X 10.9 the version only consists of major and minor number:
{code}
minimac09:~ labuser$ sw_vers
ProductName: Mac OS X
ProductVersion: 10.9
BuildVersion: 13A603
{code}

 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.