diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2022-12-22 11:53:20 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2022-12-22 15:10:04 +0100 |
commit | 9f7d6898c96febf360ae03256c3b3d35fa464183 (patch) | |
tree | 9e3af44cd495d5df5d02654c2196667b809fc0c2 | |
parent | 4baaf93a0387f30cef93a39b5a6841218c42c308 (diff) | |
download | justbuild-9f7d6898c96febf360ae03256c3b3d35fa464183.tar.gz |
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!
-rw-r--r-- | etc/import/TARGETS.boringssl | 2 |
1 files changed, 1 insertions, 1 deletions
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" |