From: Ian Lynagh Date: Wed, 24 Sep 2008 12:42:55 +0000 (+0000) Subject: Use -f when making the runhaskell symlink X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=e8173f39393bf2f458557092179d7dcf25aee703 Use -f when making the runhaskell symlink Otherwise installation fails if runhaskell already exists. --- diff --git a/driver/runhaskell/Makefile b/driver/runhaskell/Makefile index 585e8bc..02df642 100644 --- a/driver/runhaskell/Makefile +++ b/driver/runhaskell/Makefile @@ -6,7 +6,7 @@ install:: cp $(DESTDIR)$(bindir)/runghc.exe $(DESTDIR)$(bindir)/runhaskell.exe else install:: - ln -s runghc $(DESTDIR)$(bindir)/runhaskell + ln -sf runghc $(DESTDIR)$(bindir)/runhaskell endif include $(TOP)/mk/bindist.mk