Removed USE_PGXS snippet in Makefile that was blocking citus build when flag is set (#6101)

Code snippet in Makefile was blocking Citus build when USE_PGXS flag was set. This was included for port to FSPG but is not needed for Citus engine and can be safely removed.
pull/6091/head
Ying Xu 2022-07-28 14:15:45 -07:00 committed by GitHub
parent a218198e8f
commit 7c1a93b26b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 6 deletions

View File

@ -17,13 +17,7 @@ DATA = $(columnar_sql_files) \
PG_CPPFLAGS += -I$(libpq_srcdir) -I$(safestringlib_srcdir)/include
ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
include $(citus_top_builddir)/Makefile.global
.PHONY: install-all
install-all: install
endif