From 2b7f36a3c7e46897d56583445e054ebe27102a40 Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Thu, 1 Dec 2016 19:51:53 -0400 Subject: [PATCH] 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 --- .editorconfig | 3 +++ Makefile | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.editorconfig b/.editorconfig index 0f099897..ca8eec8a 100644 --- a/.editorconfig +++ b/.editorconfig @@ -8,3 +8,6 @@ end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true + +[Makefile] +indent_style = tab diff --git a/Makefile b/Makefile index c52f2235..c5d48452 100644 --- a/Makefile +++ b/Makefile @@ -51,16 +51,16 @@ else endif ifndef HOST_PLATFORM - $(error We couldn\'t detect your host platform) + $(error We couldn\'t detect your host platform) endif ifndef HOST_ARCH - $(error We couldn\'t detect your host architecture) + $(error We couldn\'t detect your host architecture) endif 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 # Default to host architecture. You can override by doing: