mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 14:16:31 +00:00
bzip2: fix passing of TARGET_MAKE_ENV to make
TARGET_MAKE_ENV is not passed to make because it is on a different line without a backslash. Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
2cd4c84586
commit
7690bc0335
@ -12,13 +12,13 @@ BZIP2_LICENSE_FILES = LICENSE
|
|||||||
|
|
||||||
ifeq ($(BR2_STATIC_LIBS),)
|
ifeq ($(BR2_STATIC_LIBS),)
|
||||||
define BZIP2_BUILD_SHARED_CMDS
|
define BZIP2_BUILD_SHARED_CMDS
|
||||||
$(TARGET_MAKE_ENV)
|
$(TARGET_MAKE_ENV) \
|
||||||
$(MAKE) -C $(@D) -f Makefile-libbz2_so $(TARGET_CONFIGURE_OPTS)
|
$(MAKE) -C $(@D) -f Makefile-libbz2_so $(TARGET_CONFIGURE_OPTS)
|
||||||
endef
|
endef
|
||||||
endif
|
endif
|
||||||
|
|
||||||
define BZIP2_BUILD_CMDS
|
define BZIP2_BUILD_CMDS
|
||||||
$(TARGET_MAKE_ENV)
|
$(TARGET_MAKE_ENV) \
|
||||||
$(MAKE) -C $(@D) libbz2.a bzip2 bzip2recover $(TARGET_CONFIGURE_OPTS)
|
$(MAKE) -C $(@D) libbz2.a bzip2 bzip2recover $(TARGET_CONFIGURE_OPTS)
|
||||||
$(BZIP2_BUILD_SHARED_CMDS)
|
$(BZIP2_BUILD_SHARED_CMDS)
|
||||||
endef
|
endef
|
||||||
|
Loading…
x
Reference in New Issue
Block a user