mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-28 13:46:32 +00:00
lzip: use $(HOST_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>
This commit is contained in:
parent
bb50481b36
commit
678a54e11c
@ -15,7 +15,7 @@ define LZIP_CONFIGURE_CMDS
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
define HOST_LZIP_CONFIGURE_CMDS
|
define HOST_LZIP_CONFIGURE_CMDS
|
||||||
(cd $(@D); ./configure --prefix=/usr \
|
(cd $(@D); $(HOST_MAKE_ENV) ./configure --prefix=/usr \
|
||||||
$(HOST_CONFIGURE_OPTS) )
|
$(HOST_CONFIGURE_OPTS) )
|
||||||
endef
|
endef
|
||||||
|
|
||||||
@ -24,7 +24,7 @@ define LZIP_BUILD_CMDS
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
define HOST_LZIP_BUILD_CMDS
|
define HOST_LZIP_BUILD_CMDS
|
||||||
$(MAKE) -C $(@D)
|
$(HOST_MAKE_ENV) $(MAKE) -C $(@D)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define LZIP_INSTALL_TARGET_CMDS
|
define LZIP_INSTALL_TARGET_CMDS
|
||||||
@ -32,7 +32,7 @@ define LZIP_INSTALL_TARGET_CMDS
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
define HOST_LZIP_INSTALL_CMDS
|
define HOST_LZIP_INSTALL_CMDS
|
||||||
$(MAKE) -C $(@D) DESTDIR=$(HOST_DIR) install
|
$(HOST_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(HOST_DIR) install
|
||||||
endef
|
endef
|
||||||
|
|
||||||
# It's not autotools-based
|
# It's not autotools-based
|
||||||
|
Loading…
x
Reference in New Issue
Block a user