Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
82ed3d62
Commit
82ed3d62
authored
Jun 07, 2014
by
Damien George
Browse files
py, mk: Revert change where build variables set with ?=.
?= operator does not do delayed expansion (unlike =).
parent
a9b5248e
Changes
1
Hide whitespace changes
Inline
Side-by-side
py/mkenv.mk
View file @
82ed3d62
...
...
@@ -42,14 +42,14 @@ ECHO = @echo
CP
=
cp
MKDIR
=
mkdir
SED
=
sed
PYTHON
?
=
python
AS
?
=
$(CROSS_COMPILE)
as
CC
?
=
$(CROSS_COMPILE)
gcc
LD
?
=
$(CROSS_COMPILE)
ld
OBJCOPY
?
=
$(CROSS_COMPILE)
objcopy
SIZE
?
=
$(CROSS_COMPILE)
size
STRIP
?
=
$(CROSS_COMPILE)
strip
PYTHON
=
python
AS
=
$(CROSS_COMPILE)
as
CC
=
$(CROSS_COMPILE)
gcc
LD
=
$(CROSS_COMPILE)
ld
OBJCOPY
=
$(CROSS_COMPILE)
objcopy
SIZE
=
$(CROSS_COMPILE)
size
STRIP
=
$(CROSS_COMPILE)
strip
all
:
.PHONY
:
all
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment