diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2011-03-29 13:34:25 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-03-29 13:34:25 +0200 |
commit | 187ca32ae4a1c5661f0ae5a0b25403535748069a (patch) | |
tree | 1cdbca15f97edcda9f71e10841f797d4ffc07e77 | |
parent | f055b266f11f8b72c60cf3b46bf081aaf97f5f6d (diff) | |
download | buildroot-novena-187ca32ae4a1c5661f0ae5a0b25403535748069a.tar.gz buildroot-novena-187ca32ae4a1c5661f0ae5a0b25403535748069a.zip |
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 <jacmet@sunsite.dk>
-rw-r--r-- | package/qt/qt.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/qt/qt.mk b/package/qt/qt.mk index 8569f7d51..bdc32d955 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 |