Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2e51a155 authored by Elliott Hughes's avatar Elliott Hughes
Browse files

Switch to toybox stat on macOS too.

Bug: http://b/139450866
Test: builds
Change-Id: I1a992a63fbf5181a48262901730b8b67661cc259
parent 9432b4d0
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -59,8 +59,3 @@ $(hide) $(PRIVATE_CXX) \
        $(PRIVATE_LDFLAGS) \
        $(PRIVATE_LDLIBS)
endef

# $(1): The file to check
define get-file-size
stat -f "%z" $(1)
endef
+0 −5
Original line number Diff line number Diff line
@@ -23,8 +23,3 @@ endef

############################################################
## Macros after this line are shared by the 64-bit config.

# $(1): The file to check
define get-file-size
stat -c "%s" "$(1)" | tr -d '\n'
endef
+3 −3
Original line number Diff line number Diff line
@@ -2678,9 +2678,9 @@ endef
###########################################################

# $(1): The file to check
ifndef get-file-size
$(error HOST_OS must define get-file-size)
endif
define get-file-size
stat -c "%s" "$(1)" | tr -d '\n'
endef

# $(1): The file(s) to check (often $@)
# $(2): The partition size.