From 655f848dff6ad1661d1623f60428523d65d514d4 Mon Sep 17 00:00:00 2001 From: gindibay Date: Wed, 12 Jul 2023 13:15:27 +0300 Subject: [PATCH] Adds make clean to installation steps If you make a fresh install make clean is not required. However, if you install before, without a make install, one can get errors --- CONTRIBUTING.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 66d026b8b..0cde0f2ff 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -41,6 +41,8 @@ that are missing in earlier minor versions. cd citus ./configure + # If you already install the project previously, 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 already install 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 already install 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`