jconway / plr

PL/R - R Procedural Language for PostgreSQL
http://www.joeconway.com
90 stars 41 forks source link

path of pg_config is required. #12

Closed swuecho closed 8 years ago

swuecho commented 8 years ago
USE_PGXS=1 make
USE_PGXS=1 make install

in http://www.joeconway.com/plr/doc/plr-install.html is not good enough.

have to set the right pg_config path

PATH=/usr/pgsql-9.4/bin/:$PATH; USE_PGXS=1 make
echo 'PATH=/usr/pgsql-9.4/bin/:$PATH; USE_PGXS=1 make install' | sudo sh

although, it is not hard to figure out.

If the manual can be more informative, it will be great.

swuecho commented 8 years ago

13