diff options
author | Gustavo Zacarias <gustavo.zacarias@free-electrons.com> | 2016-10-17 13:06:37 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-10-22 15:28:53 +0200 |
commit | 00a44f89575317bef010d03eea28e617cf56aa90 (patch) | |
tree | 3420afa848c05e7af11f7c4ba3e78484a51618a9 | |
parent | d2aa98b1de6a60c3482c43ab494ba13bcf83420e (diff) | |
download | buildroot-00a44f89575317bef010d03eea28e617cf56aa90.tar.gz buildroot-00a44f89575317bef010d03eea28e617cf56aa90.zip |
lzip: use $(TARGET_MAKE_ENV) when calling $(MAKE)
Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/lzip/lzip.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/lzip/lzip.mk b/package/lzip/lzip.mk index 7b1fdf48af..c6f054319b 100644 --- a/package/lzip/lzip.mk +++ b/package/lzip/lzip.mk @@ -20,7 +20,7 @@ define HOST_LZIP_CONFIGURE_CMDS endef define LZIP_BUILD_CMDS - $(MAKE) -C $(@D) + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) endef define HOST_LZIP_BUILD_CMDS @@ -28,7 +28,7 @@ define HOST_LZIP_BUILD_CMDS endef define LZIP_INSTALL_TARGET_CMDS - $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install endef define HOST_LZIP_INSTALL_CMDS |