diff options
| author | Robert Nelson <robertcnelson@gmail.com> | 2021-03-17 08:00:48 -0500 |
|---|---|---|
| committer | Robert Nelson <robertcnelson@gmail.com> | 2021-03-17 08:00:48 -0500 |
| commit | 28cb22447cefc9824e2c8288e59b36d46e4f5422 (patch) | |
| tree | 2b5e5672f2221cbf207b8dcc88f29b38b6c7ea0c | |
| parent | 5d669a2999e90febc178d994745d641dba758eda (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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |
