From e8173f39393bf2f458557092179d7dcf25aee703 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Wed, 24 Sep 2008 12:42:55 +0000 Subject: [PATCH] Use -f when making the runhaskell symlink Otherwise installation fails if runhaskell already exists. --- driver/runhaskell/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 1.7.10.4