diff options
author | Gustavo Zacarias <gustavo.zacarias@free-electrons.com> | 2016-10-17 13:06:29 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-10-22 15:19:24 +0200 |
commit | 16fa28058b73b92bc33164e81fcc5ee52a0ea7da (patch) | |
tree | ca562afbec3c3938f9af390b6f84671bdfe02141 /package | |
parent | bf263619284f1b10d2c3211e9a4ed20c6ff85c0c (diff) | |
download | buildroot-16fa28058b73b92bc33164e81fcc5ee52a0ea7da.tar.gz buildroot-16fa28058b73b92bc33164e81fcc5ee52a0ea7da.zip |
am33x-cm3: use $(TARGET_MAKE_ENV) when calling $(MAKE)
Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package')
-rw-r--r-- | package/am33x-cm3/am33x-cm3.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/am33x-cm3/am33x-cm3.mk b/package/am33x-cm3/am33x-cm3.mk index 01cb9a02ca..629a83238c 100644 --- a/package/am33x-cm3/am33x-cm3.mk +++ b/package/am33x-cm3/am33x-cm3.mk @@ -14,7 +14,7 @@ AM33X_CM3_LICENSE_FILES = License.txt # The build command below will use the standard cross-compiler (normally # build for Cortex-A8, to build the FW for the Cortex-M3. define AM33X_CM3_BUILD_CMDS - $(MAKE) CC="$(TARGET_CC)" CROSS_COMPILE="$(TARGET_CROSS)" -C $(@D) all + $(TARGET_MAKE_ENV) $(MAKE) CC="$(TARGET_CC)" CROSS_COMPILE="$(TARGET_CROSS)" -C $(@D) all endef # Not all of the firmware files are used |