Disable dd stdout.

This fixes noise from the install base key action like the following:
```
1+0 records in
1+0 records out
32 bytes copied, 0.113519 s, 0.3 kB/s
```

Closes #10760.

PiperOrigin-RevId: 295161083
diff --git a/src/BUILD b/src/BUILD
index 8e255be..a44808e 100644
--- a/src/BUILD
+++ b/src/BUILD
@@ -6,9 +6,7 @@
 
 exports_files(["jdeps_modules.golden"])
 
-# We avoid using the `head` tool's `-c` option, since it does not exist on
-# OpenBSD; here we use `dd` instead.
-md5_cmd = "set -e -o pipefail && echo $(SRCS) | sort | xargs %s | %s | dd bs=32 count=1 > $@"
+md5_cmd = "set -e -o pipefail && %s $(SRCS) | %s | %s > $@"
 
 [genrule(
     name = "install_base_key-file" + suffix,
@@ -22,11 +20,13 @@
     ] + embedded_tools_target,
     outs = ["install_base_key" + suffix],
     cmd = select({
-        "//src/conditions:darwin": md5_cmd % ("/sbin/md5", "/sbin/md5"),
-        "//src/conditions:darwin_x86_64": md5_cmd % ("/sbin/md5", "/sbin/md5"),
-        "//src/conditions:freebsd": md5_cmd % ("/sbin/md5", "/sbin/md5"),
-        "//src/conditions:openbsd": md5_cmd % ("/bin/md5", "/bin/md5"),
-        "//conditions:default": md5_cmd % ("md5sum", "md5sum"),
+        "//src/conditions:darwin": md5_cmd % ("/sbin/md5", "/sbin/md5", "head -c 32"),
+        "//src/conditions:darwin_x86_64": md5_cmd % ("/sbin/md5", "/sbin/md5", "head -c 32"),
+        "//src/conditions:freebsd": md5_cmd % ("/sbin/md5", "/sbin/md5", "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"),
     }),
 ) for suffix, embedded_tools_target in {
     "_jdk_allmodules": [":embedded_tools_jdk_allmodules"],