diff options
Diffstat (limited to 'scripts/contrib/python')
| -rwxr-xr-x | scripts/contrib/python/generate-manifest-2.7.py | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/scripts/contrib/python/generate-manifest-2.7.py b/scripts/contrib/python/generate-manifest-2.7.py index 8c3655d395..dce465abff 100755 --- a/scripts/contrib/python/generate-manifest-2.7.py +++ b/scripts/contrib/python/generate-manifest-2.7.py | |||
| @@ -74,13 +74,11 @@ class MakefileMaker: | |||
| 74 | # | 74 | # |
| 75 | 75 | ||
| 76 | if self.isNative: | 76 | if self.isNative: |
| 77 | rprovideLine = 'RPROVIDES+="' | 77 | pkglist = [] |
| 78 | for name in sorted(self.packages): | 78 | for name in ['${PN}-modules'] + sorted(self.packages): |
| 79 | rprovideLine += "%s-native " % name.replace( '${PN}', 'python' ) | 79 | pkglist.append('%s-native' % name.replace('${PN}', 'python')) |
| 80 | rprovideLine += '"' | ||
| 81 | 80 | ||
| 82 | self.out( rprovideLine ) | 81 | self.out('RPROVIDES += "%s"' % " ".join(pkglist)) |
| 83 | self.out( "" ) | ||
| 84 | return | 82 | return |
| 85 | 83 | ||
| 86 | # | 84 | # |
