From e27bfc00cfd0ee2dbf2835d1cffcea1816ee7a88 Mon Sep 17 00:00:00 2001 From: James Turner Date: Fri, 4 Jan 2013 10:40:43 +0000 Subject: [PATCH] Remove any references to ALUT from Mac build. --- hudson_mac_package_release.rb | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/hudson_mac_package_release.rb b/hudson_mac_package_release.rb index 1180f15..f57efe1 100755 --- a/hudson_mac_package_release.rb +++ b/hudson_mac_package_release.rb @@ -22,8 +22,6 @@ puts "Code signing identity is #{$codeSignIdentity}" puts "osgVersion=#{osgVersion}, so-number=#{$osgSoVersion}" -$alutSourcePath='/Library/Frameworks/ALUT.framework' - $svnLibs = ['svn_client', 'svn_wc', 'svn_delta', 'svn_diff', 'svn_ra', 'svn_ra_local', 'svn_repos', 'svn_fs', 'svn_fs_fs', 'svn_fs_util', 'svn_ra_svn', 'svn_subr', 'svn_ra_neon'] @@ -40,10 +38,6 @@ def fix_install_names(object) oldName = "libOpenThreads.#{$openThreadsSoVersion}.dylib" newName= "@executable_path/../Frameworks/#{oldName}" `install_name_tool -change #{oldName} #{newName} #{object}` - - alutBundlePath = "@executable_path/../Frameworks/ALUT.framework" - alutLib = "Versions/A/ALUT" - `install_name_tool -change #{$alutSourcePath}/#{alutLib} #{alutBundlePath}/#{alutLib} #{object}` end $prefixDir=Dir.pwd + "/dist" @@ -132,10 +126,6 @@ end copy_svn_libs() -# custom ALUT -# must copy frameworks using ditto -`ditto #{$alutSourcePath} #{$frameworksDir}/ALUT.framework` - # Macflightgear launcher puts "Copying Macflightgear launcher files"