diff options
author | Nicolas Thill <nico@openwrt.org> | 2010-03-10 04:03:37 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2010-03-10 04:03:37 +0000 |
commit | a9dc0200146b71f77e2d24934774e91b5c0bf120 (patch) | |
tree | 6a1d3c2d5780cb25969ee4fa62a87583cb83d0c3 /include/image.mk | |
parent | 656de42f9ceee8f3c31af1001dac8558c91c7510 (diff) | |
download | upstream-a9dc0200146b71f77e2d24934774e91b5c0bf120.tar.gz upstream-a9dc0200146b71f77e2d24934774e91b5c0bf120.tar.bz2 upstream-a9dc0200146b71f77e2d24934774e91b5c0bf120.zip |
sort entries in images md5sums files
SVN-Revision: 20116
Diffstat (limited to 'include/image.mk')
-rw-r--r-- | include/image.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/image.mk b/include/image.mk index 6c0c91ca1f..47871f9541 100644 --- a/include/image.mk +++ b/include/image.mk @@ -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 |