From 352b04ba2161e55dec6581a7208843eef2b125ed Mon Sep 17 00:00:00 2001 From: Thomas Zimmermann Date: Fri, 17 May 2019 10:12:30 +0200 Subject: [PATCH] autogen.sh: Replace symbolic link to Makefile The autogen.sh script creates a symbolic link to the build/Makfile. If the link already exists, a warning is printed and the old link persists. Now replace it with the correct target. Signed-off-by: Thomas Zimmermann --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 72ec3dbf4..9f9f268d9 100755 --- a/autogen.sh +++ b/autogen.sh @@ -19,4 +19,4 @@ mkdir -p build meson setup build "$@" # use 'autogen.sh --reconfigure' to update -ln -s build/Makefile Makefile +ln -sf build/Makefile Makefile