diff options
author | Ian Lynagh <igloo@earth.li> | 2009-05-30 23:33:56 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-05-30 23:33:56 +0000 |
commit | 7c2ca0ef7de0bdb5d059a4d714f807cd7c710616 (patch) | |
tree | e44cdac1d57d75a32b7467f9fcf14bf35972da6c /ghc | |
parent | da22bc8bb5b33eaeba2f06152904a3a2a689b6c1 (diff) | |
download | haskell-7c2ca0ef7de0bdb5d059a4d714f807cd7c710616.tar.gz |
Unquote a $(LN_S) in ghc/ghc.mk
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/ghc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/ghc.mk b/ghc/ghc.mk index 8f2c74155e..1bda27bfee 100644 --- a/ghc/ghc.mk +++ b/ghc/ghc.mk @@ -150,7 +150,7 @@ install: install_ghc_link .PNONY: install_ghc_link install_ghc_link: "$(RM)" $(RM_OPTS) $(DESTDIR)$(bindir)/ghc - "$(LN_S)" ghc-$(ProjectVersion) $(DESTDIR)$(bindir)/ghc + $(LN_S) ghc-$(ProjectVersion) $(DESTDIR)$(bindir)/ghc else # On Windows we install the main binary as $(bindir)/ghc.exe # To get ghc-<version>.exe we have a little C program in driver/ghc |