You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello. I just tried to build pgbitmap on an Ubuntu system. It failed while running as root because the bin/find_pg_config script tries to connect to the database and there is no root user.
This seems a bit complicated. Most PGXS projects allow PG_CONFIG to be passed to the Makefile, and default to pg_config in the path. I suggest switching to either:
PG_CONFIG ?= pg_config
Or, if you want the full path:
PG_CONFIG ?= $(shell which pg_config)
The text was updated successfully, but these errors were encountered:
Hello. I just tried to build pgbitmap on an Ubuntu system. It failed while running as
root
because thebin/find_pg_config
script tries to connect to the database and there is noroot
user.This seems a bit complicated. Most PGXS projects allow
PG_CONFIG
to be passed to theMakefile
, and default topg_config
in the path. I suggest switching to either:PG_CONFIG ?= pg_config
Or, if you want the full path:
The text was updated successfully, but these errors were encountered: