| diff --git a/src/BUILD b/src/BUILD |
| index f61b90738a..2c3a54d36c 100644 |
| --- a/src/BUILD |
| +++ b/src/BUILD |
| @@ -38,12 +38,12 @@ md5_cmd = "set -e -o pipefail && %s $(SRCS) | %s | %s > $@" |
| }) + embedded_tools_target, |
| outs = ["install_base_key" + suffix], |
| cmd = select({ |
| - "//src/conditions:darwin": md5_cmd % ("/sbin/md5", "/sbin/md5", "head -c 32"), |
| - "//src/conditions:freebsd": md5_cmd % ("/sbin/md5", "/sbin/md5", "head -c 32"), |
| + "//src/conditions:darwin": md5_cmd % ("@md5sum@", "@md5sum@", "head -c 32"), |
| + "//src/conditions:freebsd": md5_cmd % ("@md5sum@", "@md5sum@", "head -c 32"), |
| # We avoid using the `head` tool's `-c` option, since it does not exist |
| # on OpenBSD. |
| - "//src/conditions:openbsd": md5_cmd % ("/bin/md5", "/bin/md5", "dd bs=32 count=1"), |
| - "//conditions:default": md5_cmd % ("md5sum", "md5sum", "head -c 32"), |
| + "//src/conditions:openbsd": md5_cmd % ("@md5sum@", "@md5sum@", "dd bs=32 count=1"), |
| + "//conditions:default": md5_cmd % ("@md5sum@", "@md5sum@", "head -c 32"), |
| }), |
| ) for suffix, embedded_tools_target in { |
| "_jdk_allmodules": [":embedded_tools_jdk_allmodules"], |
| |