diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-07-25 17:16:00 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-07-25 17:16:00 +0000 |
commit | 1a5076a7cc7a45f649b8e8ec30a1948117ae9765 (patch) | |
tree | 7a42d05042ce5b2df946cb9faf7fff8cc38b5f3c /include | |
parent | 1ff3ed33f0415afe4028a90816037d3cffbc9ba1 (diff) | |
download | upstream-1a5076a7cc7a45f649b8e8ec30a1948117ae9765.tar.gz upstream-1a5076a7cc7a45f649b8e8ec30a1948117ae9765.tar.bz2 upstream-1a5076a7cc7a45f649b8e8ec30a1948117ae9765.zip |
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 847e01c2d5..0b2d3e3589 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 |