From 9be1e7675ab4d950aff0fff5676f1c0d9789d7b8 Mon Sep 17 00:00:00 2001 From: Adrian Perez Date: Sat, 13 Aug 2011 16:07:57 +0200 Subject: [PATCH] Use "ln -sf" in Makefile for symbolic links Adding "-f" to the invocation of "ln" allows for certain make invocations to succeed even when the symlinks were already existing in the filesystem prior to invocation. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9748088..3e2c1d6 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,7 @@ endif ifneq ($(MULTICALL),0) dmon: dlog.o dslog.o drlog.o multicall.o dlog drlog dslog: dmon - ln -s $< $@ + ln -sf $< $@ else dslog: dslog.o util.o $(libwheel) drlog: drlog.o util.o $(libwheel) -- 2.1.4