diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2023-01-26 10:34:57 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2023-01-26 10:35:05 +0100 |
commit | 69e21d068a6d1a38fc20a80b684873fbb7093f65 (patch) | |
tree | 70049c4407df6bbea6d98ec1ec426b4e84f64dc1 /package/u-boot/patches/patch-tools_Makefile | |
parent | 7ecb6f85b0018e4cd2c2c9dc4d859a358ac71c95 (diff) |
u-boot: do not use pkg-config to avoid linking error with target libs
Diffstat (limited to 'package/u-boot/patches/patch-tools_Makefile')
-rw-r--r-- | package/u-boot/patches/patch-tools_Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/package/u-boot/patches/patch-tools_Makefile b/package/u-boot/patches/patch-tools_Makefile new file mode 100644 index 000000000..505ea209a --- /dev/null +++ b/package/u-boot/patches/patch-tools_Makefile @@ -0,0 +1,14 @@ +--- u-boot-2022.10.orig/tools/Makefile 2022-10-03 21:25:32.000000000 +0200 ++++ u-boot-2022.10/tools/Makefile 2023-01-26 10:01:05.399923828 +0100 +@@ -174,9 +174,9 @@ endif + # MXSImage needs LibSSL + ifneq ($(CONFIG_MX23)$(CONFIG_MX28)$(CONFIG_ARMADA_38X)$(CONFIG_TOOLS_LIBCRYPTO),) + HOSTCFLAGS_kwbimage.o += \ +- $(shell pkg-config --cflags libssl libcrypto 2> /dev/null || echo "") ++ $(shell echo "-lssl -lcrypto") + HOSTLDLIBS_mkimage += \ +- $(shell pkg-config --libs libssl libcrypto 2> /dev/null || echo "-lssl -lcrypto") ++ $(shell echo "-lssl -lcrypto") + + # OS X deprecate openssl in favour of CommonCrypto, supress deprecation + # warnings on those systems |