From 0d6b9d5d1708dc3fbf89cf432c36c99dd6ef61cb Mon Sep 17 00:00:00 2001 From: Ariadne Conill Date: Tue, 4 Aug 2020 11:48:55 -0600 Subject: [PATCH] build: fix "ln: file exists" that pops up sometimes --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 08bc891..91058c0 100644 --- a/Makefile +++ b/Makefile @@ -66,7 +66,7 @@ LIBS += ${LIBBSD_LIBS} all: libifupdown.a ${MULTICALL} ${CMDS} ${CMDS}: ${MULTICALL} - ln -s ifupdown $@ + ln -sf ifupdown $@ ${MULTICALL}: ${LIBS} ${CMD_OBJ} ${CC} -o $@ ${CMD_OBJ} ${LIBS}