From 7c2ca0ef7de0bdb5d059a4d714f807cd7c710616 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sat, 30 May 2009 23:33:56 +0000 Subject: [PATCH] Unquote a $(LN_S) in ghc/ghc.mk --- ghc/ghc.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc/ghc.mk b/ghc/ghc.mk index 8f2c741..1bda27b 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-.exe we have a little C program in driver/ghc -- 1.7.10.4