summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-09-29 01:08:05 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-09-29 01:08:05 -0400
commit3753015a3533abdeccd979b2868f4fdbad001f53 (patch)
tree33a655f5e54b938fba194e011ea1472b041a0e09
parentc64273b9b3d57d7be1d1ea62dbaee3a72cebd4a0 (diff)
osx build fix
-rw-r--r--Build/InstallDesktopFile.hs4
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. -}