mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-30 06:36:34 +00:00
libsvgtiny: pass TARGET_CONFIGURE_ENV / OPTS to each make invocation
As it doesn't use a ./configure, we need to pass it each time. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
94962bf597
commit
8251a6d243
@ -21,27 +21,33 @@ $(DL_DIR)/$(LIBSVGTINY_SOURCE):
|
|||||||
LIBSVGTINY_TARGET_SOURCE := $(DL_DIR)/$(LIBSVGTINY_SOURCE)
|
LIBSVGTINY_TARGET_SOURCE := $(DL_DIR)/$(LIBSVGTINY_SOURCE)
|
||||||
|
|
||||||
define LIBSVGTINY_BUILD_CMDS
|
define LIBSVGTINY_BUILD_CMDS
|
||||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) PREFIX=/usr
|
$(TARGET_CONFIGURE_ENV) $(TARGET_CONFIGURE_OPTS) \
|
||||||
|
$(MAKE) -C $(@D) PREFIX=/usr
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define LIBSVGTINY_INSTALL_STAGING_CMDS
|
define LIBSVGTINY_INSTALL_STAGING_CMDS
|
||||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) PREFIX=/usr DESTDIR=$(STAGING_DIR) install
|
$(TARGET_CONFIGURE_ENV) $(TARGET_CONFIGURE_OPTS) \
|
||||||
|
$(MAKE) -C $(@D) PREFIX=/usr DESTDIR=$(STAGING_DIR) install
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define LIBSVGTINY_UNINSTALL_STAGING_CMDS
|
define LIBSVGTINY_UNINSTALL_STAGING_CMDS
|
||||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) PREFIX=/usr DESTDIR=$(STAGING_DIR) uninstall
|
$(TARGET_CONFIGURE_ENV) $(TARGET_CONFIGURE_OPTS) \
|
||||||
|
$(MAKE) -C $(@D) PREFIX=/usr DESTDIR=$(STAGING_DIR) uninstall
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define LIBSVGTINY_INSTALL_TARGET_CMDS
|
define LIBSVGTINY_INSTALL_TARGET_CMDS
|
||||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) PREFIX=/usr DESTDIR=$(TARGET_DIR) install
|
$(TARGET_CONFIGURE_ENV) $(TARGET_CONFIGURE_OPTS) \
|
||||||
|
$(MAKE) -C $(@D) PREFIX=/usr DESTDIR=$(TARGET_DIR) install
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define LIBSVGTINY_UNINSTALL_TARGET_CMDS
|
define LIBSVGTINY_UNINSTALL_TARGET_CMDS
|
||||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) PREFIX=/usr DESTDIR=$(TARGET_DIR) uninstall
|
$(TARGET_CONFIGURE_ENV) $(TARGET_CONFIGURE_OPTS) \
|
||||||
|
$(MAKE) -C $(@D) PREFIX=/usr DESTDIR=$(TARGET_DIR) uninstall
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define BZIP2_CLEAN_CMDS
|
define BZIP2_CLEAN_CMDS
|
||||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) clean
|
$(TARGET_CONFIGURE_ENV) $(TARGET_CONFIGURE_OPTS) \
|
||||||
|
$(MAKE) -C $(@D) clean
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call GENTARGETS,package,libsvgtiny))
|
$(eval $(call GENTARGETS,package,libsvgtiny))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user