diff options
author | Ian Lynagh <igloo@earth.li> | 2008-09-19 17:46:51 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-09-19 17:46:51 +0000 |
commit | bb924bddcd3988d50b4cf2afbd8895e886a23520 (patch) | |
tree | ea551e778df3712eae61463ffc911635e728d8b5 /driver | |
parent | f2853b4bb7b07f1ad7774c60ec9c5ed7ccfca772 (diff) | |
download | haskell-bb924bddcd3988d50b4cf2afbd8895e886a23520.tar.gz |
Gix the ghcii script
The ghc executable name doesn't have a version number on Windows, so
don't put one in the script.
Diffstat (limited to 'driver')
-rw-r--r-- | driver/ghci/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/driver/ghci/Makefile b/driver/ghci/Makefile index 4f5538b6d4..54bd246623 100644 --- a/driver/ghci/Makefile +++ b/driver/ghci/Makefile @@ -21,7 +21,7 @@ GHCII_SCRIPT=$(DESTDIR)$(bindir)/ghcii.sh install:: $(RM) -f $(GHCII_SCRIPT) echo "#!$(SHELL)" >> $(GHCII_SCRIPT) - echo 'exec "$$0"/../ghc-$(ProjectVersion) --interactive $${1+"$$@"}' >> $(GHCII_SCRIPT) + echo 'exec "$$0"/../ghc --interactive $${1+"$$@"}' >> $(GHCII_SCRIPT) chmod +x $(GHCII_SCRIPT) else LINK = ghci |