use builddir everywhere

So that it matches thr INSTALL.md instructions
This commit is contained in:
Wim Taymans 2021-06-20 12:00:26 +02:00
parent e1036ee0fc
commit a19ab4a20a
2 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View file

@ -7,6 +7,7 @@ ABOUT-NLS
*.tar.xz *.tar.xz
*.o *.o
build/ build/
builddir/
config.h.meson config.h.meson
cscope.out cscope.out
cscope.in.out cscope.in.out

View file

@ -13,6 +13,6 @@ if [ -z "$MESON" ]; then
exit 1; exit 1;
fi fi
mkdir -p build mkdir -p builddir
$MESON setup "$@" build # use 'autogen.sh --reconfigure' to update $MESON setup "$@" builddir # use 'autogen.sh --reconfigure' to update
ln -sf build/Makefile Makefile ln -sf builddir/Makefile Makefile