diff options
author | Joey Hess <joey@kitenet.net> | 2012-09-29 01:08:05 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-09-29 01:08:05 -0400 |
commit | 3753015a3533abdeccd979b2868f4fdbad001f53 (patch) | |
tree | 33a655f5e54b938fba194e011ea1472b041a0e09 /Build | |
parent | c64273b9b3d57d7be1d1ea62dbaee3a72cebd4a0 (diff) |
osx build fix
Diffstat (limited to 'Build')
-rw-r--r-- | Build/InstallDesktopFile.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/InstallDesktopFile.hs b/Build/InstallDesktopFile.hs index 7bf97a0dd..d509c3313 100644 --- a/Build/InstallDesktopFile.hs +++ b/Build/InstallDesktopFile.hs @@ -70,8 +70,8 @@ writeFDODesktop command = do writeOSXDesktop :: FilePath -> IO () writeOSXDesktop command = do installAutoStart command =<< inDestDir =<< ifM systemwideInstall - ( return $ systemAutoStart autoStartLabel - , userAutoStart autoStartLabel + ( return $ systemAutoStart osxAutoStartLabel + , userAutoStart osxAutoStartLabel ) {- Install the OSX app in non-self-contained mode. -} |