From a19ab4a20add1170a40c6b0718ad6d0cad480630 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Sun, 20 Jun 2021 12:00:26 +0200 Subject: [PATCH] use builddir everywhere So that it matches thr INSTALL.md instructions --- .gitignore | 1 + autogen.sh | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index da8784ccd..6b96ad1ca 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ ABOUT-NLS *.tar.xz *.o build/ +builddir/ config.h.meson cscope.out cscope.in.out diff --git a/autogen.sh b/autogen.sh index e3284517b..98cf4a8d9 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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