summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2014-11-19 21:51:30 -0500
committerPeter Eisentraut <peter_e@gmx.net>2014-12-04 08:45:48 -0500
commite907997f42faada60e5a26b116cc0b79b69309d1 (patch)
treebb9f4871c4920e522d84addbb8c6255040667125 /doc
parent4e4b9002498b72c7000a675216470e8918fc0420 (diff)
Remove USE_VPATH make variable from PGXS
The user can just set VPATH directly. There is no need to invent another variable.
Diffstat (limited to 'doc')
-rw-r--r--doc/src/sgml/extend.sgml6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/extend.sgml b/doc/src/sgml/extend.sgml
index a2d4ca26d8a..be102520131 100644
--- a/doc/src/sgml/extend.sgml
+++ b/doc/src/sgml/extend.sgml
@@ -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>