diff options
Diffstat (limited to 'bitbake')
| -rw-r--r-- | bitbake/lib/bb/cooker.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 1f494ee657..b36ed6fe36 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
| @@ -1486,7 +1486,7 @@ class CookerCollectFiles(object): | |||
| 1486 | filelist = [] | 1486 | filelist = [] |
| 1487 | f = os.path.basename(fn) | 1487 | f = os.path.basename(fn) |
| 1488 | for bbappend in self.appendlist: | 1488 | for bbappend in self.appendlist: |
| 1489 | if bbappend in f or ('%' in bbappend and bbappend.startswith(f[:bbappend.index('%')])): | 1489 | if (bbappend == f) or ('%' in bbappend and bbappend.startswith(f[:bbappend.index('%')])): |
| 1490 | self.appliedappendlist.append(bbappend) | 1490 | self.appliedappendlist.append(bbappend) |
| 1491 | for filename in self.appendlist[bbappend]: | 1491 | for filename in self.appendlist[bbappend]: |
| 1492 | filelist.append(filename) | 1492 | filelist.append(filename) |
