diff options
author | Simon Hengel <sol@typeful.net> | 2012-10-15 15:49:35 +0200 |
---|---|---|
committer | Simon Hengel <sol@typeful.net> | 2012-10-15 19:32:42 +0200 |
commit | e251a5e26ca9ad3f783a251e2cac04b83a7f696f (patch) | |
tree | 1d90f4be946a57233db2c163848b80fcc6abe128 /Setup.lhs | |
parent | d63c49537da8c2a3ee20e6153e2471087054730d (diff) |
Fix Setup.lhs
/usr/bin/runhaskell is not installed on all systems.
Diffstat (limited to 'Setup.lhs')
-rwxr-xr-x | Setup.lhs | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -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 |