From: Regina Obe Date: Sun, 3 Jan 2016 06:07:12 +0000 (+0000) Subject: Attempt to install extension install issue on Alpine Linux 3.2 X-Git-Tag: 2.3.0beta1~305 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fcda3c8135aa2a93739c530fdeae43e7e8af9f21;p=postgis Attempt to install extension install issue on Alpine Linux 3.2 references #3390 for PostGIS 2.3 move perl define below PGXS inclued to prevent PGXS from overwriting it. git-svn-id: http://svn.osgeo.org/postgis/trunk@14538 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/extensions/postgis/Makefile.in b/extensions/postgis/Makefile.in index 088c14666..df89dbf22 100644 --- a/extensions/postgis/Makefile.in +++ b/extensions/postgis/Makefile.in @@ -4,7 +4,6 @@ EXTENSION = postgis EXTVERSION = @POSTGIS_LIB_VERSION@ MINORVERSION = @POSTGIS_MAJOR_VERSION@.@POSTGIS_MINOR_VERSION@ GREP = @GREP@ -PERL=@PERL@ MICRO_NUMBER = $(shell echo $(EXTVERSION) | sed "s/[0-9]\.[0-9]\.\([0-9]*\)[a-zA-Z]*[0-9]*/\1/") PREREL_NUMBER = $(shell echo $(EXTVERSION) | \ @@ -122,3 +121,4 @@ distclean: clean PGXS := $(shell $(PG_CONFIG) --pgxs) include $(PGXS) +PERL=@PERL@ diff --git a/extensions/postgis_topology/Makefile.in b/extensions/postgis_topology/Makefile.in index 832d2cc8e..16a86322c 100644 --- a/extensions/postgis_topology/Makefile.in +++ b/extensions/postgis_topology/Makefile.in @@ -4,7 +4,6 @@ EXTENSION = postgis_topology EXTVERSION = @POSTGIS_LIB_VERSION@ MINORVERSION = @POSTGIS_MAJOR_VERSION@.@POSTGIS_MINOR_VERSION@ GREP=@GREP@ -PERL=@PERL@ MICRO_NUMBER = $(shell echo $(EXTVERSION) | sed "s/[0-9]\.[0-9]\.\([0-9]*\)[a-zA-Z]*[0-9]*/\1/") PREREL_NUMBER = $(shell echo $(EXTVERSION) | \ @@ -87,3 +86,4 @@ distclean: clean PGXS := $(shell $(PG_CONFIG) --pgxs) include $(PGXS) +PERL=@PERL@