From 4762f3d9939acc23683cd97cdbd4ab47edadc878 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Thu, 22 Jun 2006 13:17:00 +0000 Subject: [PATCH 1/1] fix for when path to GHC contains spaces, from #695 --- driver/ghci/ghcii.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver/ghci/ghcii.sh b/driver/ghci/ghcii.sh index 70d9898..10488b8 100644 --- a/driver/ghci/ghcii.sh +++ b/driver/ghci/ghcii.sh @@ -1,3 +1,3 @@ #!/bin/sh # Mini-driver for GHCi -exec $0/../ghc --interactive ${1+"$@"} +exec "$0"/../ghc --interactive ${1+"$@"} -- 1.7.10.4