summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Nelson <robertcnelson@gmail.com>2021-03-17 08:00:48 -0500
committerRobert Nelson <robertcnelson@gmail.com>2021-03-17 08:00:48 -0500
commit28cb22447cefc9824e2c8288e59b36d46e4f5422 (patch)
tree2b5e5672f2221cbf207b8dcc88f29b38b6c7ea0c
parent5d669a2999e90febc178d994745d641dba758eda (diff)
Makefile/gcc: dont force gcc
fixes: https://github.com/RobertCNelson/bb.org-overlays/issues/41 Signed-off-by: Robert Nelson <robertcnelson@gmail.com>
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0493664..cba863f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
DTC ?= dtc
CPP ?= cpp
-CC ?=
+CC ?= gcc
DESTDIR ?=
DTCVERSION ?= $(shell $(DTC) --version | grep ^Version | sed 's/^.* //g')
@@ -117,7 +117,7 @@ export quiet Q KBUILD_VERBOSE
all_%:
$(Q)$(MAKE) ARCH=$* all_arch
- $(CC)gcc -o config-pin ./tools/pmunts_muntsos/config-pin.c
+ $(CC) -o config-pin ./tools/pmunts_muntsos/config-pin.c
clean_%:
$(Q)$(MAKE) ARCH=$* clean_arch