diff options
author | Luis Araneda <luaraneda@gmail.com> | 2019-08-18 12:00:29 -0400 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2019-09-01 18:38:05 +0200 |
commit | 5ca243153b110ceddffecb70ba8a8cd0e33c8f0b (patch) | |
tree | 97b0cd14307d1029154c19f74447ec5066f893bf /package/boot/uboot-zynq/patches/210-link-libcrypto-static.patch | |
parent | 035906fd05b2e5543cedd9471731043945fdcf13 (diff) | |
download | upstream-5ca243153b110ceddffecb70ba8a8cd0e33c8f0b.tar.gz upstream-5ca243153b110ceddffecb70ba8a8cd0e33c8f0b.tar.bz2 upstream-5ca243153b110ceddffecb70ba8a8cd0e33c8f0b.zip |
uboot-zynq: update to 2019.07
Signed-off-by: Luis Araneda <luaraneda@gmail.com>
Diffstat (limited to 'package/boot/uboot-zynq/patches/210-link-libcrypto-static.patch')
-rw-r--r-- | package/boot/uboot-zynq/patches/210-link-libcrypto-static.patch | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/boot/uboot-zynq/patches/210-link-libcrypto-static.patch b/package/boot/uboot-zynq/patches/210-link-libcrypto-static.patch index 6fe253606e..d2e7bf168d 100644 --- a/package/boot/uboot-zynq/patches/210-link-libcrypto-static.patch +++ b/package/boot/uboot-zynq/patches/210-link-libcrypto-static.patch @@ -3,9 +3,9 @@ needed dependencies are added too. --- a/tools/Makefile +++ b/tools/Makefile -@@ -146,7 +146,7 @@ endif - # MXSImage needs LibSSL - ifneq ($(CONFIG_MX23)$(CONFIG_MX28)$(CONFIG_ARMADA_38X)$(CONFIG_ARMADA_39X)$(CONFIG_FIT_SIGNATURE),) +@@ -151,7 +151,7 @@ ifneq ($(CONFIG_MX23)$(CONFIG_MX28)$(CON + HOSTCFLAGS_kwbimage.o += \ + $(shell pkg-config --cflags libssl libcrypto 2> /dev/null || echo "") HOSTLOADLIBES_mkimage += \ - $(shell pkg-config --libs libssl libcrypto 2> /dev/null || echo "-lssl -lcrypto") + $(shell pkg-config --libs --static libssl libcrypto 2> /dev/null || echo "-lssl -lpthread -lcrypto") |