aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-05-10 16:38:49 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-05-10 16:38:49 -0400
commit50b4e02d85387be77fa6ab918ac32f62581fdcd6 (patch)
tree54a676a9318ba39e9e59ff02bd85f335e85f62f2
parent8e8679f671d7896a306bea06b2e9e62b967103c8 (diff)
more {-# OPTIONS_GHC -fno-warn-tabs #-} ... Forcing people who have what is merely a difference of opinion to you to do this is a bit of an asshole move. Just saying.
-rw-r--r--Assistant/Install/AutoStart.hs1
-rw-r--r--Assistant/Install/Menu.hs1
-rw-r--r--Build/Configure.hs2
-rw-r--r--Build/DesktopFile.hs1
-rw-r--r--Build/TestConfig.hs2
-rw-r--r--Build/Version.hs2
-rw-r--r--Config/Files.hs2
-rw-r--r--Git/Version.hs2
-rw-r--r--Utility/DottedVersion.hs2
-rw-r--r--Utility/Env.hs1
-rw-r--r--Utility/ExternalSHA.hs2
-rw-r--r--Utility/FreeDesktop.hs2
-rw-r--r--Utility/Network.hs2
-rw-r--r--Utility/PartialPrelude.hs2
14 files changed, 24 insertions, 0 deletions
diff --git a/Assistant/Install/AutoStart.hs b/Assistant/Install/AutoStart.hs
index b27b69775..57450304b 100644
--- a/Assistant/Install/AutoStart.hs
+++ b/Assistant/Install/AutoStart.hs
@@ -6,6 +6,7 @@
-}
{-# LANGUAGE CPP #-}
+{-# OPTIONS_GHC -fno-warn-tabs #-}
module Assistant.Install.AutoStart where
diff --git a/Assistant/Install/Menu.hs b/Assistant/Install/Menu.hs
index 32393abaf..dd21ee117 100644
--- a/Assistant/Install/Menu.hs
+++ b/Assistant/Install/Menu.hs
@@ -6,6 +6,7 @@
-}
{-# LANGUAGE CPP #-}
+{-# OPTIONS_GHC -fno-warn-tabs #-}
module Assistant.Install.Menu where
diff --git a/Build/Configure.hs b/Build/Configure.hs
index c90231b29..55f2493a1 100644
--- a/Build/Configure.hs
+++ b/Build/Configure.hs
@@ -1,5 +1,7 @@
{- Checks system configuration and generates SysConfig.hs. -}
+{-# OPTIONS_GHC -fno-warn-tabs #-}
+
module Build.Configure where
import System.Directory
diff --git a/Build/DesktopFile.hs b/Build/DesktopFile.hs
index 6e70b0d5f..9d68ff1d9 100644
--- a/Build/DesktopFile.hs
+++ b/Build/DesktopFile.hs
@@ -7,6 +7,7 @@
-}
{-# LANGUAGE CPP #-}
+{-# OPTIONS_GHC -fno-warn-tabs #-}
module Build.DesktopFile where
diff --git a/Build/TestConfig.hs b/Build/TestConfig.hs
index e55641fb0..35daf1945 100644
--- a/Build/TestConfig.hs
+++ b/Build/TestConfig.hs
@@ -1,5 +1,7 @@
{- Tests the system and generates Build.SysConfig.hs. -}
+{-# OPTIONS_GHC -fno-warn-tabs #-}
+
module Build.TestConfig where
import Utility.Path
diff --git a/Build/Version.hs b/Build/Version.hs
index da9d1bbcb..d2fbe6e0f 100644
--- a/Build/Version.hs
+++ b/Build/Version.hs
@@ -1,5 +1,7 @@
{- Package version determination, for configure script. -}
+{-# OPTIONS_GHC -fno-warn-tabs #-}
+
module Build.Version where
import Data.Maybe
diff --git a/Config/Files.hs b/Config/Files.hs
index d2b2f6a51..294eae22a 100644
--- a/Config/Files.hs
+++ b/Config/Files.hs
@@ -5,6 +5,8 @@
- Licensed under the GNU GPL version 3 or higher.
-}
+{-# OPTIONS_GHC -fno-warn-tabs #-}
+
module Config.Files where
import Common
diff --git a/Git/Version.hs b/Git/Version.hs
index ecd12444c..19ff945c8 100644
--- a/Git/Version.hs
+++ b/Git/Version.hs
@@ -5,6 +5,8 @@
- Licensed under the GNU GPL version 3 or higher.
-}
+{-# OPTIONS_GHC -fno-warn-tabs #-}
+
module Git.Version (
installed,
older,
diff --git a/Utility/DottedVersion.hs b/Utility/DottedVersion.hs
index 67e40ff3c..ebf4c0bd1 100644
--- a/Utility/DottedVersion.hs
+++ b/Utility/DottedVersion.hs
@@ -5,6 +5,8 @@
- License: BSD-2-clause
-}
+{-# OPTIONS_GHC -fno-warn-tabs #-}
+
module Utility.DottedVersion where
import Common
diff --git a/Utility/Env.hs b/Utility/Env.hs
index 0697dbc8d..c56f4ec23 100644
--- a/Utility/Env.hs
+++ b/Utility/Env.hs
@@ -6,6 +6,7 @@
-}
{-# LANGUAGE CPP #-}
+{-# OPTIONS_GHC -fno-warn-tabs #-}
module Utility.Env where
diff --git a/Utility/ExternalSHA.hs b/Utility/ExternalSHA.hs
index 6cef2830d..234b074bf 100644
--- a/Utility/ExternalSHA.hs
+++ b/Utility/ExternalSHA.hs
@@ -8,6 +8,8 @@
- License: BSD-2-clause
-}
+{-# OPTIONS_GHC -fno-warn-tabs #-}
+
module Utility.ExternalSHA (externalSHA) where
import Utility.SafeCommand
diff --git a/Utility/FreeDesktop.hs b/Utility/FreeDesktop.hs
index 4e35680b0..70332490b 100644
--- a/Utility/FreeDesktop.hs
+++ b/Utility/FreeDesktop.hs
@@ -10,6 +10,8 @@
- License: BSD-2-clause
-}
+{-# OPTIONS_GHC -fno-warn-tabs #-}
+
module Utility.FreeDesktop (
DesktopEntry,
genDesktopEntry,
diff --git a/Utility/Network.hs b/Utility/Network.hs
index dc044a932..4def3c5c5 100644
--- a/Utility/Network.hs
+++ b/Utility/Network.hs
@@ -5,6 +5,8 @@
- License: BSD-2-clause
-}
+{-# OPTIONS_GHC -fno-warn-tabs #-}
+
module Utility.Network where
import Utility.Process
diff --git a/Utility/PartialPrelude.hs b/Utility/PartialPrelude.hs
index 6efa093fd..557955633 100644
--- a/Utility/PartialPrelude.hs
+++ b/Utility/PartialPrelude.hs
@@ -5,6 +5,8 @@
- them being accidentially used.
-}
+{-# OPTIONS_GHC -fno-warn-tabs #-}
+
module Utility.PartialPrelude where
import qualified Data.Maybe