Skip to content

Commit 4ffc01a

Browse files
dmityugovdwsteele
authored andcommitted
Fix make check by pre-installing postgres_fdw. (pgaudit#284)
Tests performed by `make check` use several extensions, including contrib/postgres_fdw, but this extension isn't mentioned in Makefile, causing errors like: ERROR: extension "postgres_fdw" is not available ERROR: foreign-data wrapper "postgres_fdw" does not exist and so on. This patch fixes this by adding contrib/postgres_fdw to a relevant variable in the makefile. Reviewed by David Steele (@dwsteele)
1 parent 6050e72 commit 4ffc01a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ include $(top_builddir)/src/Makefile.global
2121
include $(top_srcdir)/contrib/contrib-global.mk
2222
endif
2323

24-
EXTRA_INSTALL += contrib/pg_stat_statements
24+
EXTRA_INSTALL += contrib/pg_stat_statements contrib/postgres_fdw

0 commit comments

Comments
 (0)