diff options
| author | Armin Kuster <akuster808@gmail.com> | 2018-07-11 18:27:11 -0700 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2018-07-12 07:19:43 -0700 |
| commit | e3bf0b69c99e561d18f0dadf49d1ea88270200e2 (patch) | |
| tree | d114b6c163bb25d20177b121c6cc5ffa52828ed0 | |
| parent | 908ce041a0c93a0507ea37b5c1fd8f776a960164 (diff) | |
| download | meta-openembedded-e3bf0b69c99e561d18f0dadf49d1ea88270200e2.tar.gz | |
openbox: fix runtime error for missing python and pyXDG
Openbox-Message: Cannot set locale modifiers for the X server.
/usr/bin/env: 'python': No such file or directory
/usr/libexec/openbox-xdg-autostart needs python, add rdepends
Also missing rdepends on pyXDG
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-graphics/openbox/openbox_3.6.1.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-oe/recipes-graphics/openbox/openbox_3.6.1.bb b/meta-oe/recipes-graphics/openbox/openbox_3.6.1.bb index c35a0c7238..f4d21b8f9f 100644 --- a/meta-oe/recipes-graphics/openbox/openbox_3.6.1.bb +++ b/meta-oe/recipes-graphics/openbox/openbox_3.6.1.bb | |||
| @@ -39,7 +39,6 @@ python populate_packages_prepend() { | |||
| 39 | do_split_packages(d, theme_dir, '(.*)', theme_name, '${PN} theme for %s', extra_depends='', allow_dirs=True) | 39 | do_split_packages(d, theme_dir, '(.*)', theme_name, '${PN} theme for %s', extra_depends='', allow_dirs=True) |
| 40 | } | 40 | } |
| 41 | 41 | ||
| 42 | RDEPENDS_${PN} += "${PN}-core ${PN}-config ${PN}-theme-clearlooks" | ||
| 43 | FILES_${PN}-core = "${bindir}/openbox ${bindir}/openbox-session ${libdir}/*${SOLIBS}" | 42 | FILES_${PN}-core = "${bindir}/openbox ${bindir}/openbox-session ${libdir}/*${SOLIBS}" |
| 44 | 43 | ||
| 45 | FILES_${PN}-lxde += "${datadir}/lxde/ \ | 44 | FILES_${PN}-lxde += "${datadir}/lxde/ \ |
| @@ -54,3 +53,5 @@ FILES_${PN}-gnome += " \ | |||
| 54 | " | 53 | " |
| 55 | 54 | ||
| 56 | FILES_${PN}-config += "${sysconfdir}" | 55 | FILES_${PN}-config += "${sysconfdir}" |
| 56 | |||
| 57 | RDEPENDS_${PN} += "${PN}-core ${PN}-config ${PN}-theme-clearlooks python pyxdg" | ||
