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
pull/7052/head
gindibay 2023-07-12 13:15:27 +03:00
parent 613cced1ae
commit 655f848dff
1 changed files with 6 additions and 0 deletions

View File

@ -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`