From b7df987adba52942d3bd3c8c8e35746a6ce7484b Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sat, 29 Sep 2012 01:08:05 -0400 Subject: [PATCH] osx build fix --- Build/InstallDesktopFile.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Build/InstallDesktopFile.hs b/Build/InstallDesktopFile.hs index 7bf97a0dd1..d509c33138 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. -}