shithub: cstory

Download patch

ref: 6136911976b38e681e1927c55b3251792eb88a3a
parent: 33d734cb17cd553f3d93b648890338501d38e5f7
author: Gabriel Ravier <gabravier@gmail.com>
date: Fri Nov 1 11:28:05 EDT 2019

Try to fix Makefile by using spaces instead of tabs

Signed-off-by: Gabriel Ravier <gabravier@gmail.com>

--- a/Makefile
+++ b/Makefile
@@ -52,7 +52,8 @@
 		# 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
 
--