diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-04 15:38:35 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-04 16:12:46 +0100 |
commit | 16d299c6ce7df1e96a17488a386f286bea487500 (patch) | |
tree | 4a88db18958237186399e8d891c3a7f08a419225 /bitbake | |
parent | 8105d4381fc499fc1d47d1b1791e84560dc29063 (diff) | |
download | poky-16d299c6ce7df1e96a17488a386f286bea487500.tar.gz |
cooker.py: Fix case of -b option with a full filepath
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
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 0992ec4c2e..ad1d6023fd 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -588,11 +588,11 @@ class BBCooker: | |||
588 | """ | 588 | """ |
589 | 589 | ||
590 | bf = os.path.abspath(buildfile) | 590 | bf = os.path.abspath(buildfile) |
591 | (filelist, masked) = self.collect_bbfiles() | ||
591 | try: | 592 | try: |
592 | os.stat(bf) | 593 | os.stat(bf) |
593 | return [bf] | 594 | return [bf] |
594 | except OSError: | 595 | except OSError: |
595 | (filelist, masked) = self.collect_bbfiles() | ||
596 | regexp = re.compile(buildfile) | 596 | regexp = re.compile(buildfile) |
597 | matches = [] | 597 | matches = [] |
598 | for f in filelist: | 598 | for f in filelist: |