diff options
| author | MarcoFalke <[email protected]> | 2018-07-30 13:10:54 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-07-30 13:10:56 -0400 |
| commit | 8284f1dc409027276dbd04518501377b16e85f4f (patch) | |
| tree | d1ee2874e37b00248c6eb7e3b926daf5a4ac0717 | |
| parent | Merge #13806: qa: Fix bench/block_assemble assert failure (diff) | |
| parent | Fix osslsigncode compile issue in gitian-build (diff) | |
| download | discoin-8284f1dc409027276dbd04518501377b16e85f4f.tar.xz discoin-8284f1dc409027276dbd04518501377b16e85f4f.zip | |
Merge #13782: Fix osslsigncode compile issue in gitian-build
284f424d5a Fix osslsigncode compile issue in gitian-build (Chun Kuan Lee)
Pull request description:
Install libssl1.0-dev that is compatible with osslsigncode.
Fixes #13762
Verifed that this gitian descriptor file can sign 0.16.2rc2.
Tree-SHA512: 3029b86e77567a4e033b5ad95826e60df12a0486ac3c4afcac48218f5c76ba49e7f1c1307ce93ffc465ca2f24e12c401e4542929263688e4bd6521aeca3ff73b
| -rw-r--r-- | contrib/gitian-descriptors/gitian-win-signer.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/gitian-descriptors/gitian-win-signer.yml b/contrib/gitian-descriptors/gitian-win-signer.yml index 2f3ec3e8f..045be873e 100644 --- a/contrib/gitian-descriptors/gitian-win-signer.yml +++ b/contrib/gitian-descriptors/gitian-win-signer.yml @@ -5,7 +5,8 @@ suites: architectures: - "amd64" packages: -- "libssl-dev" +# Once osslsigncode supports openssl 1.1, we can change this back to libssl-dev +- "libssl1.0-dev" - "autoconf" remotes: - "url": "https://github.com/bitcoin-core/bitcoin-detached-sigs.git" |