[bitbake-devel] [PATCH] bb.utils.which is intend to locate regular file only as it is written in comment

Vitaliy Kharin kvserr at gmail.com
Tue Jul 8 15:09:44 UTC 2014


Signed-off-by: Vitaliy Kharin <vitaliy.kharin at lge.com>
---
 bitbake/lib/bb/utils.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py
index 0be45e1..c48b237 100644
--- a/bitbake/lib/bb/utils.py
+++ b/bitbake/lib/bb/utils.py
@@ -809,7 +809,7 @@ def which(path, item, direction = 0, history = False):
     for p in paths:
         next = os.path.join(p, item)
         hist.append(next)
-        if os.path.exists(next):
+        if os.path.isfile(next):
             if not os.path.isabs(next):
                 next = os.path.abspath(next)
             if history:
-- 
2.0.0




More information about the bitbake-devel mailing list