From: Fatih Aşıcı Date: Mon, 21 Jul 2014 11:16:50 +0000 (+0300) Subject: qt5multimedia: fix installation when quick is disabled X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e934b8b13daba99955d89382388f737556ad01b0;p=buildroot.git qt5multimedia: fix installation when quick is disabled Fixes: http://autobuild.buildroot.net/results/b97/b975c4bb8aebad2d0b8eaefc98c42c0460ace5be/ http://autobuild.buildroot.net/results/b1c/b1ca9c845f1cf3a396cbd7ad81bfc4411974c709/ Signed-off-by: Fatih Aşıcı Signed-off-by: Thomas Petazzoni --- diff --git a/package/qt5/qt5multimedia/qt5multimedia.mk b/package/qt5/qt5multimedia/qt5multimedia.mk index e89e31cdbc..da26c03a22 100644 --- a/package/qt5/qt5multimedia/qt5multimedia.mk +++ b/package/qt5/qt5multimedia/qt5multimedia.mk @@ -53,9 +53,15 @@ define QT5MULTIMEDIA_INSTALL_TARGET_LIBS endef endif +ifeq ($(BR2_PACKAGE_QT5DECLARATIVE_QUICK),y) +define QT5MULTIMEDIA_INSTALL_TARGET_QMLS + cp -dpfr $(STAGING_DIR)/usr/qml/QtMultimedia $(TARGET_DIR)/usr/qml/ +endef +endif + define QT5MULTIMEDIA_INSTALL_TARGET_CMDS - cp -dpfr $(STAGING_DIR)/usr/qml/* $(TARGET_DIR)/usr/qml $(QT5MULTIMEDIA_INSTALL_TARGET_LIBS) + $(QT5MULTIMEDIA_INSTALL_TARGET_QMLS) endef $(eval $(generic-package))