shithub: cstory

Download patch

ref: b4bde541181d51c02ebc359c1089d2d4e7e4790b
parent: 8c8ddd496d9c36dddfeeae9b51dcea30d829f438
parent: 2ced08fe70f4f77d766f25b58e566b47f01d3e1e
author: Clownacy <Clownacy@users.noreply.github.com>
date: Fri Nov 1 08:32:25 EDT 2019

Merge pull request #66 from GabrielRavier/fixMakefile

Fix Makefile

--- a/Makefile
+++ b/Makefile
@@ -48,7 +48,7 @@
 endif
 
 ifeq ($(ALL_WARNINGS), 1)
-	ifneq ($(findstring clang,$(CXX),)
+	ifneq ($(findstring clang,$(CXX),))
 		# Use clang-specific flag -Weverything
 		CXXFLAGS += -Weverything
 	else
--