summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/lib/devtool/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/devtool/__init__.py b/scripts/lib/devtool/__init__.py
index d646b0cf63..29c4c05071 100644
--- a/scripts/lib/devtool/__init__.py
+++ b/scripts/lib/devtool/__init__.py
@@ -191,7 +191,7 @@ def use_external_build(same_dir, no_same_dir, d):
191 logger.info('Using source tree as build directory since --same-dir specified') 191 logger.info('Using source tree as build directory since --same-dir specified')
192 elif bb.data.inherits_class('autotools-brokensep', d): 192 elif bb.data.inherits_class('autotools-brokensep', d):
193 logger.info('Using source tree as build directory since recipe inherits autotools-brokensep') 193 logger.info('Using source tree as build directory since recipe inherits autotools-brokensep')
194 elif d.getVar('B') == os.path.abspath(d.getVar('S')): 194 elif os.path.abspath(d.getVar('B')) == os.path.abspath(d.getVar('S')):
195 logger.info('Using source tree as build directory since that would be the default for this recipe') 195 logger.info('Using source tree as build directory since that would be the default for this recipe')
196 else: 196 else:
197 b_is_s = False 197 b_is_s = False