diff options
Diffstat (limited to 'meta/classes')
| -rw-r--r-- | meta/classes/package.bbclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 77b3b4a219..b9ac0e6951 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass | |||
| @@ -1634,9 +1634,9 @@ python package_depchains() { | |||
| 1634 | #bb.note("Skipping %s" % depend) | 1634 | #bb.note("Skipping %s" % depend) |
| 1635 | continue | 1635 | continue |
| 1636 | if depend.endswith('-dev'): | 1636 | if depend.endswith('-dev'): |
| 1637 | depend = depend.replace('-dev', '') | 1637 | depend = depend[:-4] |
| 1638 | if depend.endswith('-dbg'): | 1638 | if depend.endswith('-dbg'): |
| 1639 | depend = depend.replace('-dbg', '') | 1639 | depend = depend[:-4] |
| 1640 | pkgname = getname(depend, suffix) | 1640 | pkgname = getname(depend, suffix) |
| 1641 | #bb.note("Adding %s for %s" % (pkgname, depend)) | 1641 | #bb.note("Adding %s for %s" % (pkgname, depend)) |
| 1642 | if pkgname not in rreclist and pkgname != pkg: | 1642 | if pkgname not in rreclist and pkgname != pkg: |
| @@ -1655,9 +1655,9 @@ python package_depchains() { | |||
| 1655 | #bb.note("Skipping %s" % depend) | 1655 | #bb.note("Skipping %s" % depend) |
| 1656 | continue | 1656 | continue |
| 1657 | if depend.endswith('-dev'): | 1657 | if depend.endswith('-dev'): |
| 1658 | depend = depend.replace('-dev', '') | 1658 | depend = depend[:-4] |
| 1659 | if depend.endswith('-dbg'): | 1659 | if depend.endswith('-dbg'): |
| 1660 | depend = depend.replace('-dbg', '') | 1660 | depend = depend[:-4] |
| 1661 | pkgname = getname(depend, suffix) | 1661 | pkgname = getname(depend, suffix) |
| 1662 | #bb.note("Adding %s for %s" % (pkgname, depend)) | 1662 | #bb.note("Adding %s for %s" % (pkgname, depend)) |
| 1663 | if pkgname not in rreclist and pkgname != pkg: | 1663 | if pkgname not in rreclist and pkgname != pkg: |
