From 51edff23572abbd03910c30aa83a4f9ab5a81ea8 Mon Sep 17 00:00:00 2001 From: David Steele Date: Tue, 12 Jan 2021 09:01:44 -0500 Subject: [PATCH] Improve compile and install instructions. Removing make check suggested by @motte. Adding PG_CONFIG to make suggested by @vkhvorostianyi. --- README.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 5617cad..70041f5 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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