From 0aa17969582a45d7d28967f45ed9eb2c80560856 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 7 Dec 2012 14:40:48 -0400 Subject: Revert "skip frameworks" This reverts commit 206451dd02b4deea8b1cba9309883bef4cfbbc89. At least CoreFoundation framework seems to be needed. --- Build/OSXMkLibs.hs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'Build/OSXMkLibs.hs') diff --git a/Build/OSXMkLibs.hs b/Build/OSXMkLibs.hs index 2dddd01f6..cb8c017ae 100644 --- a/Build/OSXMkLibs.hs +++ b/Build/OSXMkLibs.hs @@ -51,9 +51,7 @@ otool :: FilePath -> IO [FilePath] otool appbase = do files <- filterM doesFileExist =<< dirContentsRecursive appbase s <- readProcess "otool" ("-L" : files) - return $ nub $ filter (not . framework) $ parseOtool s - where - framework f = ".framework" `isInfixOf` f + return $ nub $ parseOtool s parseOtool :: String -> [FilePath] parseOtool = catMaybes . map parse . lines -- cgit v1.2.3