diff options
author | Koen Kooi <koen@openembedded.org> | 2009-07-29 10:17:20 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-07-29 10:17:20 +0200 |
commit | 6664caa93967e81bfeefe8a87a265565b8e32abb (patch) | |
tree | 09e98131a4c73c832543db848e00853f39838a87 /classes/qt4x11.bbclass | |
parent | b006455c129dbc68a75f5628b556a104132630b9 (diff) |
qt4x11 bbclass: only match first 12 chars in automagical dependency adder
Diffstat (limited to 'classes/qt4x11.bbclass')
-rw-r--r-- | classes/qt4x11.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/qt4x11.bbclass b/classes/qt4x11.bbclass index 923717f8af..aa2e2a174e 100644 --- a/classes/qt4x11.bbclass +++ b/classes/qt4x11.bbclass @@ -1,4 +1,4 @@ -DEPENDS_prepend = "${@["qt4x11 ", ""][(bb.data.getVar('PN', d, 1) == 'qt4-x11-free')]}" +DEPENDS_prepend = "${@["qt4x11 ", ""][(bb.data.getVar('PN', d, 1)[:12] == 'qt4-x11-free')]}" inherit qmake2 |