Skip to content

Commit

Permalink
Improve compile and install instructions.
Browse files Browse the repository at this point in the history
Removing make check suggested by @motte.
Adding PG_CONFIG to make suggested by @vkhvorostianyi.
  • Loading branch information
dwsteele committed Jan 12, 2021
1 parent 634911b commit 51edff2
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions README.md
Expand Up @@ -72,6 +72,8 @@ pgAudit versions relate to PostgreSQL major versions as follows:

pgAudit can be compiled against an installed copy of PostgreSQL with development packages using `PGXS`.

The following instructions are for RHEL 7.

Clone the pgAudit extension:
```
git clone https://github.com/pgaudit/pgaudit.git
Expand All @@ -84,15 +86,11 @@ Checkout `REL9_5_STABLE` branch (note that the stable branch may not exist for u
```
git checkout REL9_5_STABLE
```
Build pgAudit and run regression tests:
```
make check USE_PGXS=1
```
Install pgAudit:
Build and install pgAudit:
```
make install USE_PGXS=1
make install USE_PGXS=1 PG_CONFIG=/usr/pgsql-9.5/bin/pg_config
```
Detailed instructions can be found in `test/Vagrantfile`.
Detailed instructions for testing and development may be found in `test/Vagrantfile`.

## Settings

Expand Down

0 comments on commit 51edff2

Please sign in to comment.