diff options
author | Ian Lynagh <igloo@earth.li> | 2009-11-05 16:23:00 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-11-05 16:23:00 +0000 |
commit | f65bf7559b3e92607cfcf7a334e9994891dd9c32 (patch) | |
tree | 2e25a23c0baa60c14b8bf0a459732e3e1a36cc55 /ghc/ghc.wrapper | |
parent | 723eb70f31b2b413a51387bbbfbe01bb9b8c5907 (diff) | |
download | haskell-f65bf7559b3e92607cfcf7a334e9994891dd9c32.tar.gz |
Make installation on *nix work for paths with spaces in their name
This means we can remove some conditional stuff from the Makefiles,
and means the testsuite doesn't have to work out whether or not it's
on Windows.
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 093d9af784..083a66db7e 100644 --- a/ghc/ghc.wrapper +++ b/ghc/ghc.wrapper @@ -1 +1 @@ -exec $executablename -B$topdir ${1+"$@"} +exec "$executablename" -B"$topdir" ${1+"$@"} |