From ecd84ccce85e0bac9caac8ba5f0afb4b14590b6b Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Sun, 23 Feb 2020 20:30:29 +0000 Subject: [PATCH] Allow bundle path to be overridden when building database functions --- db/functions/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/db/functions/Makefile b/db/functions/Makefile index 6a3fbc0b9..a1259fc55 100644 --- a/db/functions/Makefile +++ b/db/functions/Makefile @@ -1,7 +1,8 @@ +BUNDLE ?= bundle PG_CONFIG ?= pg_config DESTDIR ?= . -QTDIR=$(shell bundle show quad_tile | tail -n 1)/ext/quad_tile +QTDIR=$(shell ${BUNDLE} show quad_tile | tail -n 1)/ext/quad_tile OS=$(shell uname -s) ifeq (${OS},Darwin) -- 2.39.5