1
0
Fork 0

Fix ALUT naming, ooops.

This commit is contained in:
James Turner 2012-08-25 14:55:20 +01:00
parent 23b0f4eea4
commit 083269de80

View file

@ -41,7 +41,7 @@ def fix_install_names(object)
newName= "@executable_path/../Frameworks/#{oldName}" newName= "@executable_path/../Frameworks/#{oldName}"
`install_name_tool -change #{oldName} #{newName} #{object}` `install_name_tool -change #{oldName} #{newName} #{object}`
alutBundlePath = "@executable_path/../Frameworks/Alut.framework" alutBundlePath = "@executable_path/../Frameworks/ALUT.framework"
alutLib = "Versions/A/ALUT" alutLib = "Versions/A/ALUT"
`install_name_tool -change #{$alutSourcePath}/#{alutLib} #{alutBundlePath}/#{alutLib} #{object}` `install_name_tool -change #{$alutSourcePath}/#{alutLib} #{alutBundlePath}/#{alutLib} #{object}`
end end