py, mk: Revert change where build variables set with ?=.

?= operator does not do delayed expansion (unlike =).
This commit is contained in:
Damien George 2014-06-07 13:14:45 +01:00
parent a9b5248e18
commit 82ed3d62f6
1 changed files with 7 additions and 7 deletions

View File

@ -42,14 +42,14 @@ ECHO = @echo
CP = cp
MKDIR = mkdir
SED = sed
PYTHON ?= python
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
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