diff options
author | Joey Hess <joey@kitenet.net> | 2012-12-09 13:45:51 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-12-09 13:45:51 -0400 |
commit | b10d1fe182a9fbe2f02938dc7eb5381795580edd (patch) | |
tree | 2563dd12c0c15df56b8fd5ba0ac276fb77abe365 /Build | |
parent | e41f768499728d918afbefb58caaad4da75ee3b8 (diff) |
typo
Diffstat (limited to 'Build')
-rw-r--r-- | Build/OSXMkLibs.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/OSXMkLibs.hs b/Build/OSXMkLibs.hs index 23f5a8f78..a3448b563 100644 --- a/Build/OSXMkLibs.hs +++ b/Build/OSXMkLibs.hs @@ -47,7 +47,7 @@ installLibs appbase libmap = do ifM (doesFileExist dest) ( return Nothing , do - createDirectoryIfMissing True (parentDir fulllib) + createDirectoryIfMissing True (parentDir dest) putStrLn $ "installing " ++ lib ++ " as " ++ shortlib _ <- boolSystem "cp" [File lib, File dest] _ <- boolSystem "chmod" [Param "644", File dest] |