diff options
author | Ian Lynagh <igloo@earth.li> | 2007-06-02 12:10:17 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-06-02 12:10:17 +0000 |
commit | 6b6c06d3a95bcb08cf847e33e58aa2cdc32f0663 (patch) | |
tree | 9cf9ccb9b8075b19f34abe0d6f6c38024b527956 /driver | |
parent | cdf3453aa51c6387a6b8ea815a3d1745b1980d8d (diff) | |
download | haskell-6b6c06d3a95bcb08cf847e33e58aa2cdc32f0663.tar.gz |
Fix ghcii.sh creation
Diffstat (limited to 'driver')
-rw-r--r-- | driver/ghci/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/driver/ghci/Makefile b/driver/ghci/Makefile index 2b15d94ed5..cdc4d4e519 100644 --- a/driver/ghci/Makefile +++ b/driver/ghci/Makefile @@ -23,8 +23,8 @@ INSTALL_PROGS += $(C_PROG) GHCII_SCRIPT=$(bindir)/ghcii.sh install:: $(RM) -f $(GHCII_SCRIPT) - echo "#!$(SHELL)" >> $(GHCII_SCRIPT) - echo 'exec "$0"/../ghc --interactive $${1+"$$@"}' >> $(GHCII_SCRIPT) + echo "#!$(SHELL)" >> $(GHCII_SCRIPT) + echo 'exec "$$0"/../ghc --interactive $${1+"$$@"}' >> $(GHCII_SCRIPT) else LINK = ghci LINK_TARGET = $(LINK)-$(ProjectVersion) |