summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2020-09-24 10:28:18 +0200
committerMartin Mareš <mj@ucw.cz>2022-01-21 13:13:21 +0100
commit9e9bddfedcdc5bb5a25d2a58b8ecc9b3a40e834f (patch)
treee441d53e875c2077f8fd3bd00469556187c14cb0
parent42f915c52b3e905ba280fa39fed55ab9979fb5df (diff)
downloadpciutils-9e9bddfedcdc5bb5a25d2a58b8ecc9b3a40e834f.tar.gz
Makefile: don't hardcode gcc
I believe "cc" is a much better default nowadays. Another approach would be to (also) use "?=" for these variables.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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