simpler ifdef for linux

This commit is contained in:
Joey Hess 2013-06-21 13:09:09 -04:00
parent 7f4d4952ef
commit 2f9b0ba351
2 changed files with 2 additions and 5 deletions

View file

@ -9,7 +9,7 @@
module Utility.Batch where
#if defined(__LINUX__) || defined(__ANDROID__)
#if defined(linux_HOST_OS) || defined(__ANDROID__)
import Control.Concurrent.Async
import System.Posix.Process
#endif
@ -26,7 +26,7 @@ import System.Posix.Process
- systems, the action is simply ran.
-}
batch :: IO a -> IO a
#if defined(__LINUX__) || defined(__ANDROID__)
#if defined(linux_HOST_OS) || defined(__ANDROID__)
batch a = wait =<< batchthread
where
batchthread = asyncBound $ do

View file

@ -115,9 +115,6 @@ Executable git-annex
Build-Depends: data-endian
CPP-Options: -D__ANDROID__
if os(linux)
CPP-Options: -D__LINUX__
if os(linux) && flag(Inotify)
Build-Depends: hinotify
CPP-Options: -DWITH_INOTIFY