From a9d28ca96ff4dca2c63617873e2a49428c49944a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCrkan=20=C4=B0ndibay?= Date: Mon, 25 Sep 2023 12:42:23 +0300 Subject: [PATCH] Adds make clean to installation steps (#7052) If you make a fresh install make clean is not required. However, if you install before, without a make install, one can get errors --------- Co-authored-by: aykut-bozkurt <51649454+aykut-bozkurt@users.noreply.github.com> --- CONTRIBUTING.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 66d026b8b..ac1f600ab 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -41,6 +41,8 @@ that are missing in earlier minor versions. cd citus ./configure + # If you have already installed the project, you need to clean it first + make clean make make install # Optionally, you might instead want to use `make install-all` @@ -79,6 +81,8 @@ that are missing in earlier minor versions. git clone https://github.com/citusdata/citus.git cd citus ./configure + # If you have already installed the project previously, you need to clean it first + make clean make sudo make install # Optionally, you might instead want to use `sudo make install-all` @@ -129,6 +133,8 @@ that are missing in earlier minor versions. git clone https://github.com/citusdata/citus.git cd citus PG_CONFIG=/usr/pgsql-14/bin/pg_config ./configure + # If you have already installed the project previously, you need to clean it first + make clean make sudo make install # Optionally, you might instead want to use `sudo make install-all`