b923fdffdd
The qmake step of qt5 packages may attempt to run pkg-config. If qmake is executed in an environment where the buildroot host directory is not in PATH, pkg-config from the build machine may be used (/usr/bin/pkg-config). This causes qt5 package compilation to fail on machines that do not have pkg-config installed. Refer to mailing list thread [1] for a specific error case. This patch prepends TARGET_MAKE_ENV (which sets PATH) to the qmake call. Reported-by: Marco Trapanese <marcotrapanese@gmail.com> Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> [1] http://lists.busybox.net/pipermail/buildroot/2014-March/092283.html Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
40 lines
1.2 KiB
Makefile
40 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# qt5imageformats
|
|
#
|
|
################################################################################
|
|
|
|
QT5IMAGEFORMATS_VERSION = $(QT5_VERSION)
|
|
QT5IMAGEFORMATS_SITE = $(QT5_SITE)
|
|
QT5IMAGEFORMATS_SOURCE = qtimageformats-opensource-src-$(QT5IMAGEFORMATS_VERSION).tar.xz
|
|
QT5IMAGEFORMATS_DEPENDENCIES = qt5base
|
|
QT5IMAGEFORMATS_INSTALL_STAGING = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_QT5BASE_LICENSE_APPROVED),y)
|
|
QT5IMAGEFORMATS_LICENSE = LGPLv2.1 or GPLv3.0
|
|
QT5IMAGEFORMATS_LICENSE_FILES = LICENSE.GPL LICENSE.LGPL LGPL_EXCEPTION.txt
|
|
else
|
|
QT5IMAGEFORMATS_LICENSE = Commercial license
|
|
QT5IMAGEFORMATS_REDISTRIBUTE = NO
|
|
endif
|
|
|
|
define QT5IMAGEFORMATS_CONFIGURE_CMDS
|
|
(cd $(@D); $(TARGET_MAKE_ENV) $(HOST_DIR)/usr/bin/qmake)
|
|
endef
|
|
|
|
define QT5IMAGEFORMATS_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define QT5IMAGEFORMATS_INSTALL_STAGING_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) install
|
|
endef
|
|
|
|
ifeq ($(BR2_PREFER_STATIC_LIB),)
|
|
define QT5IMAGEFORMATS_INSTALL_TARGET_CMDS
|
|
cp -dpf $(STAGING_DIR)/usr/lib/qt/plugins/imageformats/*.so $(TARGET_DIR)/usr/lib/qt/plugins/imageformats/
|
|
endef
|
|
endif
|
|
|
|
$(eval $(generic-package))
|