summaryrefslogtreecommitdiffstats
path: root/meta/classes/utils.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/utils.bbclass')
-rw-r--r--meta/classes/utils.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass
index ce639b283e..59ace4421f 100644
--- a/meta/classes/utils.bbclass
+++ b/meta/classes/utils.bbclass
@@ -303,7 +303,7 @@ hardlinkdir () {
303 303
304 304
305def check_app_exists(app, d): 305def check_app_exists(app, d):
306 app = d.expand(app) 306 app = d.expand(app).strip()
307 path = d.getVar('PATH', d, True) 307 path = d.getVar('PATH', d, True)
308 return bool(bb.utils.which(path, app)) 308 return bool(bb.utils.which(path, app))
309 309