Skip to content

Commit 52735de

Browse files
committed
Fix a build problem on 9.4 caused by VPATH support
This resulted in linker errors for symbols defined in compat/pglogical_compat.o on 9.4.
1 parent d15d81b commit 52735de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ PGVER := $(shell $(PG_CONFIG) --version | sed 's/[^0-9\.]//g' | awk -F . '{ prin
4646

4747
ifeq ($(PGVER),94)
4848
PG_CPPFLAGS += $(addprefix -I,$(realpath $(srcdir)/compat))
49-
OBJS += $(realpath $(srcdir)/compat/pglogical_compat.o)
49+
OBJS += $(srcdir)/compat/pglogical_compat.o
5050
DATA += compat/pglogical_origin.control compat/pglogical_origin--1.0.0.sql
5151
REGRESS = preseed infofuncs init_fail init preseed_check basic extended toasted replication_set add_table matview primary_key foreign_key functions copy drop
5252
REGRESS += --dbname=regression

0 commit comments

Comments
 (0)