From 9e9bddfedcdc5bb5a25d2a58b8ecc9b3a40e834f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 24 Sep 2020 10:28:18 +0200 Subject: Makefile: don't hardcode gcc I believe "cc" is a much better default nowadays. Another approach would be to (also) use "?=" for these variables. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 256e8ea..aeb020e 100644 --- a/Makefile +++ b/Makefile @@ -45,7 +45,7 @@ PKGCFDIR=$(LIBDIR)/pkgconfig INSTALL=install DIRINSTALL=install -d STRIP=-s -CC=$(CROSS_COMPILE)gcc +CC=$(CROSS_COMPILE)cc AR=$(CROSS_COMPILE)ar RANLIB=$(CROSS_COMPILE)ranlib -- cgit v1.2.1