From b366a73d3ae0ec795c4c7b410660f19ae0265025 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Deuc=D0=B5?= <shurd@sasktel.net>
Date: Fri, 5 May 2023 14:47:07 -0400
Subject: [PATCH] Use cc, not $(CC) to build genmap

---
 src/conio/GNUmakefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/conio/GNUmakefile b/src/conio/GNUmakefile
index 06555900f9..b27c1feb08 100644
--- a/src/conio/GNUmakefile
+++ b/src/conio/GNUmakefile
@@ -78,5 +78,5 @@ rgbmap.h: rgbmap.s
 $(MTOBJODIR)$(DIRSEP)rgbmap$(OFILE): rgbmap.s rgbmap.h
 
 $(EXEODIR)$(DIRSEP)genmap$(EXEFILE): $(OBJODIR)$(DIRSEP)genmap$(OFILE)
-	$(CC) $(LDFLAGS) $(OBJODIR)$(DIRSEP)genmap$(OFILE) -o $@
+	cc $(LDFLAGS) $(OBJODIR)$(DIRSEP)genmap$(OFILE) -o $@
 
-- 
GitLab