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
*.o
build/
builddir/
config.h.meson
cscope.out
cscope.in.out

View File

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