summaryrefslogtreecommitdiffstats
path: root/recipes/qt4
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2010-05-06 08:53:37 +0200
committerKoen Kooi <koen@openembedded.org>2010-05-06 08:55:38 +0200
commitddceb0bc5eb777f35b1fa13e8efeb6cebdbf3764 (patch)
tree2533f1c08a03038ef5dd8286e5b628bb253f2a26 /recipes/qt4
parent867771621916db9338d212e0e2c2ad24bad77960 (diff)
downloadopenembedded-ddceb0bc5eb777f35b1fa13e8efeb6cebdbf3764.tar.gz
qt4-tools-sdk: symlink tools back to their original names to make e.g. eclipse plugins work
Change imported from http://arago-project.org/git/?p=arago.git;a=commitdiff;h=5bbda8657da241ca7c5a48cc497ca1506d6b05b0
Diffstat (limited to 'recipes/qt4')
-rw-r--r--recipes/qt4/qt4-tools-sdk_4.6.2.bb8
1 files changed, 8 insertions, 0 deletions
diff --git a/recipes/qt4/qt4-tools-sdk_4.6.2.bb b/recipes/qt4/qt4-tools-sdk_4.6.2.bb
index d8eda8a811..26b49c8523 100644
--- a/recipes/qt4/qt4-tools-sdk_4.6.2.bb
+++ b/recipes/qt4/qt4-tools-sdk_4.6.2.bb
@@ -8,6 +8,8 @@ LICENSE = "LGPLv2.1 GPLv3"
DEFAULT_PREFERENCE = "-1"
inherit sdk
+PR = "r1"
+
SRC_URI = "ftp://ftp.trolltech.com/qt/source/qt-everywhere-opensource-src-${PV}.tar.gz \
file://configure-lflags.patch;patch=1 \
file://qt-config.patch;patch=1 \
@@ -70,6 +72,12 @@ do_install() {
for i in moc uic uic3 rcc lrelease lupdate qdbuscpp2xml qdbusxml2cpp; do
install -m 0755 bin/${i} ${D}${bindir}/${i}4
done
+
+ (cd ${D}${bindir}; \
+ ln -s qmake2 qmake; \
+ for i in moc uic uic3 rcc lrelease lupdate qdbuscpp2xml qdbusxml2cpp; do \
+ ln -s ${i}4 ${i}; \
+ done)
}