diff options
author | Andreas Oberritter <obi@opendreambox.org> | 2012-03-07 21:36:28 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-13 11:44:45 +0000 |
commit | 4c41a3204ef72f53813ddc86fe525fa9c6714daa (patch) | |
tree | 0049040daeee2b75f505c58631f17dd94892ba01 /meta/recipes-qt/qt4/qt4-x11-free.inc | |
parent | 92a8d604674bd500fdb4008bc34791776c84ae33 (diff) | |
download | openembedded-core-4c41a3204ef72f53813ddc86fe525fa9c6714daa.tar.gz openembedded-core-4c41a3204ef72f53813ddc86fe525fa9c6714daa.tar.bz2 openembedded-core-4c41a3204ef72f53813ddc86fe525fa9c6714daa.zip |
qt4: fix deps in libQtWebkit.la and QtWebKit.pc
* Both files contain -L../../WebCore/release -L../../JavaScriptCore/release -lwebcore -ljscore
* These paths and libs don't get installed.
* When building a shared lib with libtool, that links
with libQtWebKit, libtool adds these unneeded parameters
to the linker command-line, thus linking fails.
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Diffstat (limited to 'meta/recipes-qt/qt4/qt4-x11-free.inc')
-rw-r--r-- | meta/recipes-qt/qt4/qt4-x11-free.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-qt/qt4/qt4-x11-free.inc b/meta/recipes-qt/qt4/qt4-x11-free.inc index 75487f756b..56f349a31b 100644 --- a/meta/recipes-qt/qt4/qt4-x11-free.inc +++ b/meta/recipes-qt/qt4/qt4-x11-free.inc @@ -5,7 +5,7 @@ HOMEPAGE = "http://qt.nokia.com" SECTION = "x11/libs" DEPENDS += "virtual/libgl virtual/libx11 fontconfig libxft libxext libxrender libxrandr libxcursor" -INC_PR = "r38" +INC_PR = "r39" QT_GLFLAGS ?= "${@base_contains('DISTRO_FEATURES', 'opengl', '-opengl', '-no-opengl', d)} " QT_GLFLAGS_qemux86 = "-opengl" |