From: Baruch Siach Date: Tue, 29 Sep 2015 20:01:32 +0000 (+0300) Subject: postgresql: fix ZIC configure variable assignment X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=468233a9b776a55dfd8ced7d5d67189f6bb76855;p=buildroot.git 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 --- 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)