diff options
author | Christian Gagneraud <chgans@gna.org> | 2013-07-24 21:31:47 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-07-25 12:21:12 +0200 |
commit | 07301a163688682b5b3e5dddada6da63593917b0 (patch) | |
tree | 8a77aea456071a7232557ec84eaf735ec1fc4054 | |
parent | 43872948d4bb764c723d122cac8dcc0cb1ed93c6 (diff) | |
download | meta-qt5-07301a163688682b5b3e5dddada6da63593917b0.tar.gz |
qtbase.inc: Fix qtbase-tools runtime depencency on perl
* While building a custom rootfs using poky, meta-oe, meta-ti
and meta-qt5 (all on Dylan branch), I got the following error:
[...]
Computing transaction...error: Can't install
qtbase-tools-5.0.2-r2.0@armv7a_vfp_neon: no package provides /usr/bin/perl
[...]
* syncqt is perl script with /usr/bin/perl shebang, that's why rpm
was complaining (other package managers in OE doesn't check that)
Signed-off-by: Christian Gagneraud <chgans@gna.org>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | recipes-qt/qt5/qtbase.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/recipes-qt/qt5/qtbase.inc b/recipes-qt/qt5/qtbase.inc index c6cb2cce..5c1b51b6 100644 --- a/recipes-qt/qt5/qtbase.inc +++ b/recipes-qt/qt5/qtbase.inc | |||
@@ -25,6 +25,9 @@ SRC_URI += " \ | |||
25 | 25 | ||
26 | DEPENDS += "qtbase-native" | 26 | DEPENDS += "qtbase-native" |
27 | 27 | ||
28 | # for syncqt | ||
29 | RDEPENDS_${PN}-tools += "perl" | ||
30 | |||
28 | # separate some parts of PACKAGECONFIG which are often changed | 31 | # separate some parts of PACKAGECONFIG which are often changed |
29 | # be aware that you need to add icu to build qtwebkit, default | 32 | # be aware that you need to add icu to build qtwebkit, default |
30 | # PACKAGECONFIG is kept rather minimal for people who don't need | 33 | # PACKAGECONFIG is kept rather minimal for people who don't need |