remove libSystem.b from OSX build
Without the frameworks, but with this library, I get: dyld: Symbol not found: __vproc_transactions_enable Referenced from: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation Expected in: /Volumes/git-annex/git-annex.app/Contents/MacOS/./C in /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation Without this library, things seem to work again w/o frameworks.
This commit is contained in:
parent
0d50a6105b
commit
9b663c7f8c
1 changed files with 1 additions and 0 deletions
|
@ -64,6 +64,7 @@ otool appbase libmap = do
|
|||
where
|
||||
want s = not ("@executable_path" `isInfixOf` s)
|
||||
&& not (".framework" `isInfixOf` s)
|
||||
&& not ("libSystem.B" `isInfixOf` s)
|
||||
process c [] m = return (nub $ concat c, m)
|
||||
process c (file:rest) m = do
|
||||
_ <- boolSystem "chmod" [Param "755", File file]
|
||||
|
|
Loading…
Reference in a new issue