diff options
author | Ian Lynagh <igloo@earth.li> | 2008-09-15 10:02:17 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-09-15 10:02:17 +0000 |
commit | 704bbd5482ed6781bc436d1a28d558713dd13c59 (patch) | |
tree | 168c8756ab998092ae55e7984277699af274322f /ghc/ghc.wrapper | |
parent | 4c0bb32afe603bf4d73c2ab64313f68f1169e7e3 (diff) | |
download | haskell-704bbd5482ed6781bc436d1a28d558713dd13c59.tar.gz |
Use "exec" when running ghc in the wrapper
Diffstat (limited to 'ghc/ghc.wrapper')
-rw-r--r-- | ghc/ghc.wrapper | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/ghc.wrapper b/ghc/ghc.wrapper index 4b11d9e25e..71eae84738 100644 --- a/ghc/ghc.wrapper +++ b/ghc/ghc.wrapper @@ -1,3 +1,3 @@ #!/bin/sh -$executablename -B$datadir -dynload wrapped ${1+"$@"} +exec $executablename -B$datadir -dynload wrapped ${1+"$@"} |