From 5f5403ff7541c4261684f19b7a796d07c5dfd698 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 cf3391287..1fde59f3c 100755 --- a/autogen.sh +++ b/autogen.sh @@ -7,4 +7,4 @@ git submodule update mkdir -p build meson setup build "$@" # use 'autogen.sh --reconfigure' to update -ln -s build/Makefile Makefile +ln -sf build/Makefile Makefile