From 6136911976b38e681e1927c55b3251792eb88a3a Mon Sep 17 00:00:00 2001 From: Gabriel Ravier Date: Fri, 1 Nov 2019 15:28:05 +0100 Subject: [PATCH] Try to fix Makefile by using spaces instead of tabs Signed-off-by: Gabriel Ravier --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7c524515..49ec9169 100644 --- a/Makefile +++ b/Makefile @@ -52,7 +52,8 @@ ifeq ($(ALL_WARNINGS), 1) # Use clang-specific flag -Weverything CXXFLAGS += -Weverything else - $(warning Couldn\'t activate all warnings (Unsupported compiler)) + # This is indented with spaces because otherwise it doesn't compile (make doesn't like tabs there for some reason + $(warning Couldn\'t activate all warnings (Unsupported compiler)) endif endif