mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-12-24 13:31:37 +03:00
cmake: use explicit VPATH when calling pgxs makefile
Some postgres installations report problems with the makefile magic that should look for the source where the Makefile is located. So hand in the path explicitly via VPATH instead. Fixes #453.
This commit is contained in:
parent
362f259f47
commit
e4963256e1
@ -1,6 +1,6 @@
|
||||
# just use the pgxs makefile
|
||||
ADD_CUSTOM_COMMAND( OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/dummy
|
||||
COMMAND PGXS=${PGXS} PG_CONFIG=${PG_CONFIG} make -f ${CMAKE_CURRENT_SOURCE_DIR}/Makefile
|
||||
COMMAND PGXS=${PGXS} PG_CONFIG=${PG_CONFIG} MODSRCDIR=${CMAKE_CURRENT_SOURCE_DIR} make -f ${CMAKE_CURRENT_SOURCE_DIR}/Makefile
|
||||
COMMENT "Running external makefile ${PGXS}"
|
||||
)
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
MODULES = nominatim
|
||||
VPATH = $(MODSRCDIR)
|
||||
include $(PGXS)
|
||||
|
||||
all:
|
||||
|
Loading…
Reference in New Issue
Block a user