1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-11-05 14:09:31 +01:00

sort entries in images md5sums files

SVN-Revision: 20116
This commit is contained in:
Nicolas Thill 2010-03-10 04:03:37 +00:00
parent 656de42f9c
commit a9dc020014

@ -104,7 +104,7 @@ endif
define Image/Checksum
( cd ${BIN_DIR} ; \
$(FIND) -maxdepth 1 -type f \! -name 'md5sums' -printf "%P\n" | xargs \
$(FIND) -maxdepth 1 -type f \! -name 'md5sums' -printf "%P\n" | sort | xargs \
md5sum --binary > md5sums \
)
endef