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 <tzimmermann@suse.de>
This commit is contained in:
Thomas Zimmermann 2019-05-17 10:12:30 +02:00 committed by Wim Taymans
parent 21cd78fe9e
commit 5f5403ff75

View file

@ -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