[Buildroot] [PATCH v2 1/2] package/qt5webengine: sort license hash list by path

Arnout Vandecappelle arnout at mind.be
Wed Jul 10 22:03:55 UTC 2019



On 10/07/2019 19:36, Peter Seiderer wrote:
> +# for i in $(find src/3rdparty/ -type f \( -iname 'license*' -o -iname 'copying*' -o -name 'APPLE_LICENSE' -o -name 'Copyright' -o -path '*/license_texts/*' -o -path '*/licenses/*' \) -a -not -name '*.cc' -not -name '*.py' -not -name '*.h' -not -name 'LICENSE.sha1' -not -name 'licensecheck.pl*' -not -name 'license.after' -not -name 'license.before') ; do echo -n "sha256 " ; sha256sum $i ; done | sort --key=3

 It would have been more logical to sort the output of find instead of the final
result, i.e.:

for i in $(find ... | sort); do ...; done

but it doesn't matter much, so applied to master, thanks.

 Regards,
 Arnout



More information about the buildroot mailing list