diff options
Diffstat (limited to 'recipes/qt4/qt4-x11-free_4.6.0.bb')
-rw-r--r-- | recipes/qt4/qt4-x11-free_4.6.0.bb | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/recipes/qt4/qt4-x11-free_4.6.0.bb b/recipes/qt4/qt4-x11-free_4.6.0.bb index 0e39dc9b6e..4b5eabff5c 100644 --- a/recipes/qt4/qt4-x11-free_4.6.0.bb +++ b/recipes/qt4/qt4-x11-free_4.6.0.bb @@ -24,7 +24,8 @@ S = "${WORKDIR}/qt-everywhere-opensource-src-${PV}" QT_CONFIG_FLAGS += " \ -no-embedded \ - -xrandr " + -xrandr \ + -x11" do_configure_prepend() { sed -i \ @@ -35,3 +36,10 @@ do_configure_prepend() { ${S}/configure } +do_install_append() { + install -d ${D}${bindir} + for i in rcc uic moc ; do + install -m 0755 ${S}/bin/$i ${D}${bindir}/ + done +} + |