mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-18 05:13:31 +01:00
Merge bitcoin/bitcoin#31626: depends: Use base system's sha256sum
utility on FreeBSD
727c542769
depends: Use base system's `sha256sum` utility (Hennadii Stepanov) Pull request description: On FreeBSD, the `shasum` utility is provided by the [`perl5`](https://ports.freebsd.org/cgi/ports.cgi?query=%5Eperl5&stype=all&sektion=all) port, which is not part of the base system and must be [installed](0e3518579a/.github/workflows/freebsd.yml (L104)
) separately. Note that this requirement is currently not documented in [`depends/README.md`](https://github.com/bitcoin/bitcoin/blob/master/depends/README.md). This PR switches to using the [`sha256sum`](https://man.freebsd.org/cgi/man.cgi?query=sha256sum&apropos=0&sektion=0&manpath=FreeBSD+14.2-RELEASE+and+Ports&arch=default&format=html) utility, which is included in the base system. ACKs for top commit: davidgumberg: ACK727c542769
Tree-SHA512: 41f11b80c2dc32514116400aa8ae57ef809edcbff5883dd62042d12ff14a54557864e2f1979c8705914242a2334880463da3e376f32c5b57a68fe41a90db1f85
This commit is contained in:
commit
5b3a81f44d
@ -1,5 +1,5 @@
|
||||
build_freebsd_CC=clang
|
||||
build_freebsd_CXX=clang++
|
||||
|
||||
build_freebsd_SHA256SUM = shasum -a 256
|
||||
build_freebsd_SHA256SUM = sha256sum
|
||||
build_freebsd_DOWNLOAD = curl --location --fail --connect-timeout $(DOWNLOAD_CONNECT_TIMEOUT) --retry $(DOWNLOAD_RETRIES) -o
|
||||
|
Loading…
Reference in New Issue
Block a user