aboutsummaryrefslogtreecommitdiff
path: root/Setup.lhs
diff options
context:
space:
mode:
authorSimon Hengel <sol@typeful.net>2012-10-15 15:49:35 +0200
committerSimon Hengel <sol@typeful.net>2012-10-15 19:32:42 +0200
commite251a5e26ca9ad3f783a251e2cac04b83a7f696f (patch)
tree1d90f4be946a57233db2c163848b80fcc6abe128 /Setup.lhs
parentd63c49537da8c2a3ee20e6153e2471087054730d (diff)
Fix Setup.lhs
/usr/bin/runhaskell is not installed on all systems.
Diffstat (limited to 'Setup.lhs')
-rwxr-xr-xSetup.lhs8
1 files changed, 3 insertions, 5 deletions
diff --git a/Setup.lhs b/Setup.lhs
index fe12b5be..5bde0de9 100755
--- a/Setup.lhs
+++ b/Setup.lhs
@@ -1,5 +1,3 @@
-#! /usr/bin/runhaskell
-\begin{code}
-import Distribution.Simple
-main = defaultMain
-\end{code}
+#!/usr/bin/env runhaskell
+> import Distribution.Simple
+> main = defaultMain