diff options
author | David Nyström <david.c.nystrom@gmail.com> | 2013-10-17 15:59:42 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-10-18 15:58:17 +0100 |
commit | ddf4e899763e6bc65d70febbc76f9b77bfb0b9f8 (patch) | |
tree | 83ff3a1582586ede3726f4f20866204bd3e4b90c | |
parent | a73f180ee99c219b6f6731e3c6915c65cda8fa2c (diff) | |
download | poky-ddf4e899763e6bc65d70febbc76f9b77bfb0b9f8.tar.gz |
smartpm: Add nativesdk in BBCLASSEXTEND
(From OE-Core rev: 5084e8168fcc37878d39bf1f5562aede44c00b3e)
Signed-off-by: David Nyström <david.nystrom@enea.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/python/python-smartpm_1.4.1.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python-smartpm_1.4.1.bb b/meta/recipes-devtools/python/python-smartpm_1.4.1.bb index f349469d22..464c5c5571 100644 --- a/meta/recipes-devtools/python/python-smartpm_1.4.1.bb +++ b/meta/recipes-devtools/python/python-smartpm_1.4.1.bb | |||
@@ -49,6 +49,10 @@ RPM_RDEP_class-native = "" | |||
49 | QT_RDEP_class-native = "" | 49 | QT_RDEP_class-native = "" |
50 | GTK_RDEP_class-native = "" | 50 | GTK_RDEP_class-native = "" |
51 | 51 | ||
52 | RPM_RDEP_class-nativesdk = "" | ||
53 | QT_RDEP_class-nativesdk = "" | ||
54 | GTK_RDEP_class-nativesdk = "" | ||
55 | |||
52 | PACKAGECONFIG[rpm] = ",,rpm,${RPM_RDEP}" | 56 | PACKAGECONFIG[rpm] = ",,rpm,${RPM_RDEP}" |
53 | PACKAGECONFIG[qt4] = ",,qt4-x11,${QT_RDEP}" | 57 | PACKAGECONFIG[qt4] = ",,qt4-x11,${QT_RDEP}" |
54 | PACKAGECONFIG[gtk] = ",,gtk+,${GTK_RDEP}" | 58 | PACKAGECONFIG[gtk] = ",,gtk+,${GTK_RDEP}" |
@@ -138,5 +142,5 @@ FILES_${PN}-interface-qt4 = "${libdir}/python*/site-packages/smart/interfaces/qt | |||
138 | FILES_${PN}-interface-gtk = "${libdir}/python*/site-packages/smart/interfaces/gtk" | 142 | FILES_${PN}-interface-gtk = "${libdir}/python*/site-packages/smart/interfaces/gtk" |
139 | FILES_${PN}-interface-images = "${datadir}/${baselib}/python*/site-packages/smart/interfaces/images" | 143 | FILES_${PN}-interface-images = "${datadir}/${baselib}/python*/site-packages/smart/interfaces/images" |
140 | 144 | ||
141 | BBCLASSEXTEND = "native" | 145 | BBCLASSEXTEND = "native nativesdk" |
142 | 146 | ||