mirror of
https://github.com/balena-io/etcher.git
synced 2025-07-27 21:26:38 +00:00
style: convert spaces to tabs in Makefile (#924)
Additionally, we setup an EditorConfig rule to automatically switch to tab style on Makefile. Signed-off-by: Juan Cruz Viotti <jviotti@openmailbox.org>
This commit is contained in:
parent
68a71d89e2
commit
2b7f36a3c7
@ -8,3 +8,6 @@ end_of_line = lf
|
|||||||
charset = utf-8
|
charset = utf-8
|
||||||
trim_trailing_whitespace = true
|
trim_trailing_whitespace = true
|
||||||
insert_final_newline = true
|
insert_final_newline = true
|
||||||
|
|
||||||
|
[Makefile]
|
||||||
|
indent_style = tab
|
||||||
|
6
Makefile
6
Makefile
@ -51,16 +51,16 @@ else
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifndef HOST_PLATFORM
|
ifndef HOST_PLATFORM
|
||||||
$(error We couldn\'t detect your host platform)
|
$(error We couldn\'t detect your host platform)
|
||||||
endif
|
endif
|
||||||
ifndef HOST_ARCH
|
ifndef HOST_ARCH
|
||||||
$(error We couldn\'t detect your host architecture)
|
$(error We couldn\'t detect your host architecture)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
TARGET_PLATFORM = $(HOST_PLATFORM)
|
TARGET_PLATFORM = $(HOST_PLATFORM)
|
||||||
|
|
||||||
ifneq ($(TARGET_PLATFORM),$(HOST_PLATFORM))
|
ifneq ($(TARGET_PLATFORM),$(HOST_PLATFORM))
|
||||||
$(error We don\'t support cross-platform builds yet)
|
$(error We don\'t support cross-platform builds yet)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Default to host architecture. You can override by doing:
|
# Default to host architecture. You can override by doing:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user