From 61f35c91a7f4dd0cae3661e6ae2061d73ec0595b Mon Sep 17 00:00:00 2001
From: James R <justsomejames2@gmail.com>
Date: Sat, 11 Jul 2020 12:45:35 -0700
Subject: [PATCH] It's not always GCC, but it probably is gcc (I hope)

(cherry picked from commit 4e1d54c3322c17276e532ab4d9e875a8c8ebc399)
---
 src/Makefile.cfg | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Makefile.cfg b/src/Makefile.cfg
index 363bf56cf..a1d9d21ee 100644
--- a/src/Makefile.cfg
+++ b/src/Makefile.cfg
@@ -47,7 +47,7 @@ endif
 
 # Automatically set version flag, but not if one was manually set
 ifeq   (,$(filter GCC%,$(.VARIABLES)))
- ifneq (,$(findstring GCC,$(shell $(CC) --version))) # if it's GCC
+ ifneq (,$(findstring gcc,$(shell $(CC) --version))) # if it's GCC
   version:=$(shell $(CC) -dumpversion)
 
   # Turn version into words of major, minor
-- 
GitLab