diff options
Diffstat (limited to 'meta')
| -rw-r--r-- | meta/classes/debian.bbclass | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/meta/classes/debian.bbclass b/meta/classes/debian.bbclass index d35882fa44..46a9d089c2 100644 --- a/meta/classes/debian.bbclass +++ b/meta/classes/debian.bbclass | |||
| @@ -107,7 +107,13 @@ python debian_package_name_hook () { | |||
| 107 | if newpkg != pkg: | 107 | if newpkg != pkg: |
| 108 | bb.data.setVar('PKG_' + pkg, newpkg, d) | 108 | bb.data.setVar('PKG_' + pkg, newpkg, d) |
| 109 | 109 | ||
| 110 | for pkg in (bb.data.getVar('AUTO_LIBNAME_PKGS', d, 1) or "").split(): | 110 | # reversed sort is needed when some package is substring of another |
| 111 | # ie in ncurses we get without reverse sort: | ||
| 112 | # DEBUG: LIBNAMES: pkgname libtic5 devname libtic pkg ncurses-libtic orig_pkg ncurses-libtic debian_pn None newpkg libtic5 | ||
| 113 | # and later | ||
| 114 | # DEBUG: LIBNAMES: pkgname libtic5 devname libtic pkg ncurses-libticw orig_pkg ncurses-libtic debian_pn None newpkg libticw | ||
| 115 | # so we need to handle ncurses-libticw->libticw5 before ncurses-libtic->libtic5 | ||
| 116 | for pkg in sorted((bb.data.getVar('AUTO_LIBNAME_PKGS', d, 1) or "").split(), reverse=True): | ||
| 111 | auto_libname(packages, pkg) | 117 | auto_libname(packages, pkg) |
| 112 | } | 118 | } |
| 113 | 119 | ||
