Merge "Make get-file-size compatible with toybox stat"

am: 04d3c4f655

Change-Id: I528266c18e5c6ee81bf54c853cd829e7c0df7535
This commit is contained in:
Luca Stefani 2019-01-12 14:42:20 -08:00 committed by android-build-merger
commit 796e2ed840
1 changed files with 1 additions and 1 deletions

View File

@ -26,5 +26,5 @@ endef
# $(1): The file to check
define get-file-size
stat --format "%s" "$(1)" | tr -d '\n'
stat -c "%s" "$(1)" | tr -d '\n'
endef