Skip to content

Commit 727c542

Browse files
committed
depends: Use base system's sha256sum utility
On FreeBSD, the `shasum` utility is provided by the `perl5` port, which is not part of the base system and must be installed separately. Note that this requirement is currently not documented in `depends/README.md`. This change switches to using the `sha256sum` utility, which is included in the base system.
1 parent 66aa6a4 commit 727c542

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

depends/builders/freebsd.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
build_freebsd_CC=clang
22
build_freebsd_CXX=clang++
33

4-
build_freebsd_SHA256SUM = shasum -a 256
4+
build_freebsd_SHA256SUM = sha256sum
55
build_freebsd_DOWNLOAD = curl --location --fail --connect-timeout $(DOWNLOAD_CONNECT_TIMEOUT) --retry $(DOWNLOAD_RETRIES) -o

0 commit comments

Comments
 (0)