diff options
author | Thomas Zimmermann <tzimmermann@suse.de> | 2019-05-17 10:12:30 +0200 |
---|---|---|
committer | Wim Taymans <wtaymans@redhat.com> | 2019-05-23 10:13:59 +0200 |
commit | 5f5403ff7541c4261684f19b7a796d07c5dfd698 (patch) | |
tree | 9841f592c596de5c3292f7b489b05b603c4d1a73 | |
parent | 21cd78fe9eed53488f1dde5c0c688513342bd893 (diff) |
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>
-rwxr-xr-x | autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |