mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-26 03:50:44 -09:00
package/googlefontdirectory: fix command to generate license file hashes
In commitebe5d9edfe("boot, package, support, toolchain: switch to 2 spaces for the hash file"), all hash files were migrated to use 2 spaces as the separator. However, in the googlefontdirectory hash file, a command is present in a comment to indicate how to generate the part of the hash file that provides the list of license file hashes. This command was not updated as part ofebe5d9edfe, so it still emits a result in which a single space is used a separator between the hash type (sha256) and the hash value. This commit fixes that by using a 2-space separator. Signed-off-by: Christian Hitz <christian.hitz@bbv.ch> [Thomas: extracted from https://patchwork.ozlabs.org/project/buildroot/patch/20240228145013.411919-2-christian@klarinett.li/ into a separate patch] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
32c192fec9
commit
f139aab6fe
@@ -1,7 +1,7 @@
|
||||
# Locally calculated
|
||||
sha256 ec2ddbeee673cce1b0796e3b20fbff5fd836ce9ba6d88deed8b59154fa255f06 googlefontdirectory-94dff3eaa9301b6640cccc63c56d6ff33d82882c.tar.gz
|
||||
# Locally calculated with
|
||||
# for i in $(find apache/ ofl/ ufl/ -name 'LICENSE.txt' -o -name 'OFL.txt' -o -name 'LICENCE.txt') ; do printf "sha256 %s\n" "$(sha256sum $i)" ; done
|
||||
# for i in $(find apache/ ofl/ ufl/ -name 'LICENSE.txt' -o -name 'OFL.txt' -o -name 'LICENCE.txt') ; do printf "sha256 %s\n" "$(sha256sum $i)" ; done
|
||||
sha256 cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30 apache/robotocondensed/LICENSE.txt
|
||||
sha256 3ddf9be5c28fe27dad143a5dc76eea25222ad1dd68934a047064e56ed2fa40c5 apache/opensanscondensed/LICENSE.txt
|
||||
sha256 cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30 apache/walterturncoat/LICENSE.txt
|
||||
|
||||
Reference in New Issue
Block a user