Skip to content

Commit

Permalink
Adds make clean to installation steps
Browse files Browse the repository at this point in the history
If you make a fresh install make clean is not
required. However, if you install before, without
a make install, one can get errors
  • Loading branch information
gurkanindibay committed Jul 12, 2023
1 parent 613cced commit 655f848
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down Expand Up @@ -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`
Expand Down Expand Up @@ -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`
Expand Down

0 comments on commit 655f848

Please sign in to comment.