postgresql: fix ZIC configure variable assignment
authorBaruch Siach <baruch@tkos.co.il>
Tue, 29 Sep 2015 20:01:32 +0000 (23:01 +0300)
committerPeter Korsgaard <peter@korsgaard.com>
Tue, 29 Sep 2015 22:33:02 +0000 (00:33 +0200)
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 <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/postgresql/postgresql.mk

index 2bad6b4d0547b59c01ff2db22cac73218cf5a00f..e710e928d901623889513028b89aaca719a09d78 100644 (file)
@@ -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)