fix osx build
This commit is contained in:
parent
49d039fe6a
commit
1579c98d4d
1 changed files with 4 additions and 2 deletions
|
@ -12,8 +12,10 @@ module Assistant.Install.Menu where
|
|||
import Utility.FreeDesktop
|
||||
|
||||
installMenu :: FilePath -> FilePath -> IO ()
|
||||
installMenu command file = do
|
||||
#ifndef darwin_HOST_OS
|
||||
installMenu command file =
|
||||
#ifdef darwin_HOST_OS
|
||||
return ()
|
||||
#else
|
||||
writeDesktopMenuFile (fdoDesktopMenu command) file
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue