diff options
author | Joey Hess <id@joeyh.name> | 2013-05-10 16:57:21 -0500 |
---|---|---|
committer | Joey Hess <id@joeyh.name> | 2013-05-10 16:57:21 -0500 |
commit | ae6293ae6710b0a7580bc9a0045c92d1d5b87036 (patch) | |
tree | fbd105bed124fb698fdc5bbdf4eb2d9ccd086979 /Build | |
parent | 5d0476bf59674b39fa6bad7e4446b5c741181143 (diff) |
fixup #if 0 stubs to use #ifndef mingw32_HOST_OS
That's needed in files used to build the configure program.
For the other files, I'm keeping my __WINDOWS__ define, as I find that much easier to type.
I may search and replace it to use the mingw32_HOST_OS thing later.
Diffstat (limited to 'Build')
-rwxr-xr-x | Build/DesktopFile.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/DesktopFile.hs b/Build/DesktopFile.hs index 35d5362bd..3c6816e60 100755 --- a/Build/DesktopFile.hs +++ b/Build/DesktopFile.hs @@ -22,7 +22,7 @@ import Assistant.Install.Menu import Control.Applicative import System.Directory import System.Environment -#if 0 +#ifndef mingw32_HOST_OS import System.Posix.User import System.Posix.Files #endif @@ -30,7 +30,7 @@ import System.FilePath import Data.Maybe systemwideInstall :: IO Bool -#if 0 +#ifndef mingw32_HOST_OS systemwideInstall = isroot <||> destdirset where isroot = do |