Try to fix Makefile by using spaces instead of tabs

Signed-off-by: Gabriel Ravier <gabravier@gmail.com>
This commit is contained in:
Gabriel Ravier 2019-11-01 15:28:05 +01:00
parent 33d734cb17
commit 6136911976

View file

@ -52,7 +52,8 @@ ifeq ($(ALL_WARNINGS), 1)
# Use clang-specific flag -Weverything # Use clang-specific flag -Weverything
CXXFLAGS += -Weverything CXXFLAGS += -Weverything
else 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
endif endif