diff options
author | Gustavo Zacarias <gustavo.zacarias@free-electrons.com> | 2016-10-13 19:13:08 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-10-15 14:16:22 +0200 |
commit | 152e98ccab075ac373406fa676d0c1b6bfd95da1 (patch) | |
tree | 48de44cccd1f70647c060abe29f7eca2f765a482 | |
parent | 04a89b8fa73deea856138b98f6be1509db6bc6d5 (diff) | |
download | buildroot-152e98ccab075ac373406fa676d0c1b6bfd95da1.tar.gz buildroot-152e98ccab075ac373406fa676d0c1b6bfd95da1.zip |
lsof: 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>
-rw-r--r-- | package/lsof/lsof.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/lsof/lsof.mk b/package/lsof/lsof.mk index 312d834b03..e5cd4bce6e 100644 --- a/package/lsof/lsof.mk +++ b/package/lsof/lsof.mk @@ -47,7 +47,7 @@ define LSOF_CONFIGURE_CMDS endef define LSOF_BUILD_CMDS - $(MAKE) $(TARGET_CONFIGURE_OPTS) DEBUG="$(TARGET_CFLAGS)" -C $(@D) + $(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) DEBUG="$(TARGET_CFLAGS)" -C $(@D) endef define LSOF_INSTALL_TARGET_CMDS |