From 9f7d6898c96febf360ae03256c3b3d35fa464183 Mon Sep 17 00:00:00 2001 From: Klaus Aehlig Date: Thu, 22 Dec 2022 11:53:20 +0100 Subject: import of boringssl: fix export structure Both ["", "ssl"] and ["", "crypto"] are targets of "boringssl" that are intended for use outside this repository. Both depend on the ["CC", "library"]-target ["", "crytpo-lib"], in fact even visibly, as ssl has a library-dependency on the crypto library. Therefore, we have to follow the standard export pattern that all uses of this library go through the same (closest) export target. Fix this! --- etc/import/TARGETS.boringssl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'etc') diff --git a/etc/import/TARGETS.boringssl b/etc/import/TARGETS.boringssl index b1e25581..99b26234 100644 --- a/etc/import/TARGETS.boringssl +++ b/etc/import/TARGETS.boringssl @@ -64,7 +64,7 @@ , "hdrs": [["./", "src/include/openssl", "ssl_headers"]] , "private-hdrs": ["ssl_internal_headers", "crypto_internal_headers"] , "srcs": ["ssl_sources"] - , "deps": ["crypto-lib"] + , "deps": ["crypto"] } , "crypto_internal_headers": { "type": "install" -- cgit v1.2.3