]> granicus.if.org Git - postgresql/commitdiff
Remove USE_VPATH make variable from PGXS
authorPeter Eisentraut <peter_e@gmx.net>
Thu, 20 Nov 2014 02:51:30 +0000 (21:51 -0500)
committerPeter Eisentraut <peter_e@gmx.net>
Thu, 4 Dec 2014 13:45:48 +0000 (08:45 -0500)
The user can just set VPATH directly.  There is no need to invent
another variable.

doc/src/sgml/extend.sgml
src/makefiles/pgxs.mk

index a2d4ca26d8a1fa861918074b35f3ec2ad3dc135e..be10252013138922b4afa1742a2fb3937e38b260 100644 (file)
@@ -1180,10 +1180,10 @@ make -f /path/to/extension/source/tree/Makefile install
     way to how it is done for the core code. One way to do this is using the
     core script <filename>config/prep_buildtree</>. Once this has been done
     you can build by setting the <literal>make</literal> variable
-    <varname>USE_VPATH</varname> like this:
+    <varname>VPATH</varname> like this:
 <programlisting>
-make USE_VPATH=/path/to/extension/source/tree
-make USE_VPATH=/path/to/extension/source/tree install
+make VPATH=/path/to/extension/source/tree
+make VPATH=/path/to/extension/source/tree install
 </programlisting>
     This procedure can work with a greater variety of directory layouts.
    </para>
index 8cf229e23cdb7d020cf287e5e7fa8e0cff656382..60cccddb72b00d8a85d2534c79ae384abfa42802 100644 (file)
@@ -62,11 +62,10 @@ top_builddir := $(dir $(PGXS))../..
 include $(top_builddir)/src/Makefile.global
 
 top_srcdir = $(top_builddir)
-# If USE_VPATH is set or Makefile is not in current directory we are building
-# the extension with VPATH so we set the variable here
-ifdef USE_VPATH
-srcdir = $(USE_VPATH)
-VPATH = $(USE_VPATH)
+# If VPATH is set or Makefile is not in current directory we are building
+# the extension with VPATH so we set the variable here.
+ifdef VPATH
+srcdir = $(VPATH)
 else
 ifeq ($(CURDIR),$(dir $(firstword $(MAKEFILE_LIST))))
 srcdir = .