diff options
| author | hallgren <hallgren@chalmers.se> | 2014-09-02 12:27:47 +0000 |
|---|---|---|
| committer | hallgren <hallgren@chalmers.se> | 2014-09-02 12:27:47 +0000 |
| commit | e0e6079c9141a0c2d7d2a6dda50496e237bfc8bb (patch) | |
| tree | 8afa517ddd94e7f9b64d8c6a44cfbb8da4e13069 /src/server/Setup.hs | |
| parent | bfd414554d2bb114baa8acc176744d55367eabb3 (diff) | |
src/server: refactoring to isolate dependencies on the cgi/fastcgi packages
* Introducing the module CGI, re-exporting a subset of the cgi package. It
might complete replace the cgi package in the future.
* Introducing the module CGIUtils, containing functions from FastCGIUtils that
have nothing to do with fastcgi.
Some low level hackery with unsafePerformIO and global variables was left
in FastCGIUtils, but it is actually not used, neither for gf -server nor
exec/pgf-fcgi.hs.
Diffstat (limited to 'src/server/Setup.hs')
| -rw-r--r-- | src/server/Setup.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/Setup.hs b/src/server/Setup.hs index f0e23432c..1ef4756c0 100644 --- a/src/server/Setup.hs +++ b/src/server/Setup.hs @@ -4,7 +4,7 @@ import Control.Monad(when) import System.Directory(createDirectoryIfMissing,doesFileExist, getDirectoryContents,copyFile,removeFile) import System.FilePath((</>)) -import System.Cmd(system) +import System.Process(system) import System.Exit(ExitCode(..)) import Distribution.Simple |
