Since oe-core fa8950d0c the logic to turn a version into a directory name doesn't work for versions which are too short.
Solve this by overriding gnome_verdir() to return the version as-is, as that is what the directory is called. Signed-off-by: Ross Burton <ross.bur...@arm.com> --- meta/recipes-gnome/libgudev/libgudev_236.bb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/meta/recipes-gnome/libgudev/libgudev_236.bb b/meta/recipes-gnome/libgudev/libgudev_236.bb index daa578ddb19..5d1d2d782be 100644 --- a/meta/recipes-gnome/libgudev/libgudev_236.bb +++ b/meta/recipes-gnome/libgudev/libgudev_236.bb @@ -26,3 +26,8 @@ GTKDOC_MESON_OPTION = "gtk_doc" UPSTREAM_CHECK_URI = "http://ftp.gnome.org/pub/GNOME/sources/libgudev/" UPSTREAM_CHECK_REGEX = "(?P<pver>(\d+))" + +# This isn't a GNOME-style version do gnome_verdir fails. Just return the +# version as that is how the directory is structured. +def gnome_verdir(v): + return v -- 2.25.1
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#153382): https://lists.openembedded.org/g/openembedded-core/message/153382 Mute This Topic: https://lists.openembedded.org/mt/83848348/21656 Group Owner: openembedded-core+ow...@lists.openembedded.org Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [arch...@mail-archive.com] -=-=-=-=-=-=-=-=-=-=-=-