From 468233a9b776a55dfd8ced7d5d67189f6bb76855 Mon Sep 17 00:00:00 2001 From: Baruch Siach Date: Tue, 29 Sep 2015 23:01:32 +0300 Subject: [PATCH] postgresql: fix ZIC configure variable assignment The 'ZIC=$$(ZIC)' assignment is seen as 'ZIC=$(ZIC)' by the shell, that interprets that as command substitution causing an error like: /bin/sh: ZIC: command not found Signed-off-by: Baruch Siach Signed-off-by: Peter Korsgaard --- package/postgresql/postgresql.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/postgresql/postgresql.mk b/package/postgresql/postgresql.mk index 2bad6b4d05..e710e928d9 100644 --- a/package/postgresql/postgresql.mk +++ b/package/postgresql/postgresql.mk @@ -50,7 +50,7 @@ POSTGRESQL_DEPENDENCIES += tzdata POSTGRESQL_CONF_OPTS += --with-system-tzdata=/usr/share/zoneinfo else POSTGRESQL_DEPENDENCIES += host-zic -POSTGRESQL_CONF_ENV += ZIC=$$(ZIC) +POSTGRESQL_CONF_ENV += ZIC="$(ZIC)" endif ifeq ($(BR2_PACKAGE_OPENSSL),y) -- 2.30.2