mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 05:53:30 +08:00
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 <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
b70f2f96d3
commit
468233a9b7
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user