Dropped sql file for non-extension build

This commit is contained in:
Daniele Varrazzo
2017-03-29 03:35:20 +01:00
parent 46dd16a6ed
commit 2af90dced1
2 changed files with 0 additions and 15 deletions

View File

@ -25,13 +25,7 @@ REPACK_VERSION = $(shell grep '"version":' ../META.json | head -1 \
PG_CPPFLAGS = -DREPACK_VERSION=$(REPACK_VERSION)
# Support CREATE EXTENSION for PG >= 9.1 and a simple sql script for PG < 9.1
ifeq ($(shell echo $$(($(INTVERSION) >= 901))),1)
DATA_built = pg_repack--$(REPACK_VERSION).sql pg_repack.control
else
DATA_built = pg_repack.sql
DATA = uninstall_pg_repack.sql
endif
USE_PGXS = 1
PGXS := $(shell $(PG_CONFIG) --pgxs)