From: Peter Korsgaard Date: Tue, 29 Mar 2011 11:34:25 +0000 (+0200) Subject: qt: fix qt3 support target install X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=187ca32ae4a1c5661f0ae5a0b25403535748069a;p=buildroot.git qt: fix qt3 support target install "lib" shouldn't be prefixed, otherwise the make file tries to install liblibQt3Support.so.*. Signed-off-by: Peter Korsgaard --- diff --git a/package/qt/qt.mk b/package/qt/qt.mk index 8569f7d517..bdc32d9559 100644 --- a/package/qt/qt.mk +++ b/package/qt/qt.mk @@ -539,7 +539,7 @@ ifeq ($(BR2_PACKAGE_QT_SCRIPTTOOLS),y) QT_INSTALL_LIBS += QtScriptTools endif ifeq ($(BR2_PACKAGE_QT_QT3SUPPORT),y) -QT_INSTALL_LIBS += libQt3Support +QT_INSTALL_LIBS += Qt3Support endif QT_CONF_FILE=$(HOST_DIR)/usr/bin/qt.conf