mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-22 21:28:10 +03:00
badd2e46aa
The pgxs makefile in Postgres <= 9.2 cannot yet handle VPATH correctly. Provide header paths explicitly and overwrite VPATH after sourcing the pgxs file. Fixes #454.
12 lines
173 B
Makefile
12 lines
173 B
Makefile
MODULES = nominatim
|
|
PG_CPPFLAGS = -I$(MODSRCDIR)
|
|
include $(PGXS)
|
|
|
|
VPATH = $(MODSRCDIR)
|
|
|
|
all:
|
|
chmod 755 nominatim.so
|
|
|
|
install:
|
|
@echo Library does not need to be installed.
|