From 7e5387559adf3deb508c7f558ee054c7f4db2eb3 Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Tue, 28 May 2024 09:28:58 +0200 Subject: [PATCH] hd-rum-multi/Makefile: use $(CC) instead of gcc --- hd-rum-multi/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hd-rum-multi/Makefile b/hd-rum-multi/Makefile index dada37cfe6..53c4cd41a6 100644 --- a/hd-rum-multi/Makefile +++ b/hd-rum-multi/Makefile @@ -1,7 +1,7 @@ SRCDIR ?= . all: - gcc -g -Wall -pthread -o hd-rum $(SRCDIR)/hd-rum.c + $(CC) -g -Wall -pthread -o hd-rum $(SRCDIR)/hd-rum.c install: install -m 755 hd-rum /usr/local/bin