10000 py, mk: Revert change where build variables set with ?=. · micropython/micropython@82ed3d6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 82ed3d6

Browse files
committed
py, mk: Revert change where build variables set with ?=.
?= operator does not do delayed expansion (unlike =).
1 parent a9b5248 commit 82ed3d6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

py/mkenv.mk

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ ECHO = @echo
4242
CP = cp
4343
MKDIR = mkdir
4444
SED = sed
45-
PYTHON ?= python
46-
47-
AS ?= $(CROSS_COMPILE)as
48-
CC ?= $(CROSS_COMPILE)gcc
49-
LD ?= $(CROSS_COMPILE)ld
50-
OBJCOPY ?= $(CROSS_COMPILE)objcopy
51-
SIZE ?= $(CROSS_COMPILE)size
52-
STRIP ?= $(CROSS_COMPILE)strip
45+
PYTHON = python
46+
47+
AS = $(CROSS_COMPILE)as
48+
CC = $(CROSS_COMPILE)gcc
49+
LD = $(CROSS_COMPILE)ld
50+
OBJCOPY = $(CROSS_COMPILE)objcopy
51+
SIZE = $(CROSS_COMPILE)size
52+
STRIP = $(CROSS_COMPILE)strip
5353

5454
all:
5555
.PHONY: all

0 commit comments

Comments
 (0)
0