diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-07-25 17:16:00 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-07-25 17:16:00 +0000 |
commit | 39df09f65842dd54aefce12d92e5a4e32d93ffce (patch) | |
tree | 7a42d05042ce5b2df946cb9faf7fff8cc38b5f3c /include | |
parent | b03eb103efc4eee14667d58a3b0bc358d481cb59 (diff) |
use --binary option of md5sum to improve compatibility with other platforms (#5192)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16977 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-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 847e01c2d..0b2d3e358 100644 --- a/include/image.mk +++ b/include/image.mk @@ -92,7 +92,7 @@ endif define Image/Checksum ( cd ${BIN_DIR} ; \ $(FIND) -maxdepth 1 -type f \! -name 'md5sums' -printf "%P\n" | xargs \ - md5sum > md5sums \ + md5sum --binary > md5sums \ ) endef |