From 473fb330cf1237d5e7cc586b9b39c1be6b764b06 Mon Sep 17 00:00:00 2001 From: Thomas Zimmermann Date: Fri, 17 May 2019 10:08:16 +0200 Subject: [PATCH] autogen.sh: Reuse existing build directory Removing the build directory might delete important development files as well. Signed-off-by: Thomas Zimmermann --- autogen.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/autogen.sh b/autogen.sh index eacc495c9..72ec3dbf4 100755 --- a/autogen.sh +++ b/autogen.sh @@ -17,7 +17,6 @@ # Only there to make jhbuild happy -rm -rf ./build -mkdir build -meson build "$@" +mkdir -p build +meson setup build "$@" # use 'autogen.sh --reconfigure' to update ln -s build/Makefile Makefile