Explorar o código

use --binary option of md5sum to improve compatibility with other platforms (#5192)

SVN-Revision: 16977
Florian Fainelli %!s(int64=16) %!d(string=hai) anos
pai
achega
07c4108af6
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      include/image.mk

+ 1 - 1
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