diff options
author | Joey Hess <joey@kitenet.net> | 2013-04-17 11:57:46 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-04-17 11:57:46 -0400 |
commit | ddeb07578cf496bb8a390965eee7e4fe6e81cbc4 (patch) | |
tree | bc55e4423ada6dc1d44ca4cede4ab178aaffb6e2 | |
parent | 5f516ac44fb8b141172e4deba5ff800247ee8616 (diff) |
argle
-rw-r--r-- | Build/Configure.hs | 2 | ||||
-rw-r--r-- | Build/EvilSplicer.hs | 2 | ||||
-rw-r--r-- | Build/InstallDesktopFile.hs | 2 | ||||
-rw-r--r-- | Build/OSXMkLibs.hs | 2 | ||||
-rw-r--r-- | Build/Standalone.hs | 2 |
5 files changed, 10 insertions, 0 deletions
diff --git a/Build/Configure.hs b/Build/Configure.hs index 34df7337e..ae51e2f9e 100644 --- a/Build/Configure.hs +++ b/Build/Configure.hs @@ -1,5 +1,7 @@ {- Checks system configuration and generates SysConfig.hs. -} +module Build.Configure where + import System.Directory import Data.List import System.Process diff --git a/Build/EvilSplicer.hs b/Build/EvilSplicer.hs index c7c6fedf2..074904192 100644 --- a/Build/EvilSplicer.hs +++ b/Build/EvilSplicer.hs @@ -25,6 +25,8 @@ - Licensed under the GNU GPL version 3 or higher. -} +module Main where + import Text.Parsec import Text.Parsec.String import Control.Applicative ((<$>)) diff --git a/Build/InstallDesktopFile.hs b/Build/InstallDesktopFile.hs index 40bcee069..c01557414 100644 --- a/Build/InstallDesktopFile.hs +++ b/Build/InstallDesktopFile.hs @@ -8,6 +8,8 @@ {-# LANGUAGE CPP #-} +module Main where + import Utility.Exception import Utility.FreeDesktop import Utility.Path diff --git a/Build/OSXMkLibs.hs b/Build/OSXMkLibs.hs index 90aeba958..5225f12bf 100644 --- a/Build/OSXMkLibs.hs +++ b/Build/OSXMkLibs.hs @@ -5,6 +5,8 @@ - Licensed under the GNU GPL version 3 or higher. -} +module Main where + import Control.Applicative import System.Environment import Data.Maybe diff --git a/Build/Standalone.hs b/Build/Standalone.hs index 387c65703..163e3ea79 100644 --- a/Build/Standalone.hs +++ b/Build/Standalone.hs @@ -7,6 +7,8 @@ {-# LANGUAGE CPP #-} +module Main where + import Control.Applicative import Control.Monad.IfElse import System.Environment |