summaryrefslogtreecommitdiffstats
path: root/scripts/lib/devtool/ide_sdk.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib/devtool/ide_sdk.py')
-rwxr-xr-xscripts/lib/devtool/ide_sdk.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/lib/devtool/ide_sdk.py b/scripts/lib/devtool/ide_sdk.py
index 289bbbf47c..7807b322b3 100755
--- a/scripts/lib/devtool/ide_sdk.py
+++ b/scripts/lib/devtool/ide_sdk.py
@@ -301,6 +301,7 @@ class RecipeModified:
301 self.staging_incdir = None 301 self.staging_incdir = None
302 self.strip_cmd = None 302 self.strip_cmd = None
303 self.target_arch = None 303 self.target_arch = None
304 self.target_dbgsrc_dir = None
304 self.topdir = None 305 self.topdir = None
305 self.workdir = None 306 self.workdir = None
306 self.recipe_id = None 307 self.recipe_id = None
@@ -357,7 +358,6 @@ class RecipeModified:
357 'PACKAGE_DEBUG_SPLIT_STYLE') 358 'PACKAGE_DEBUG_SPLIT_STYLE')
358 self.path = recipe_d.getVar('PATH') 359 self.path = recipe_d.getVar('PATH')
359 self.pn = recipe_d.getVar('PN') 360 self.pn = recipe_d.getVar('PN')
360 self.pv = recipe_d.getVar('PV')
361 self.recipe_sysroot = os.path.realpath( 361 self.recipe_sysroot = os.path.realpath(
362 recipe_d.getVar('RECIPE_SYSROOT')) 362 recipe_d.getVar('RECIPE_SYSROOT'))
363 self.recipe_sysroot_native = os.path.realpath( 363 self.recipe_sysroot_native = os.path.realpath(
@@ -368,6 +368,7 @@ class RecipeModified:
368 recipe_d.getVar('STAGING_INCDIR')) 368 recipe_d.getVar('STAGING_INCDIR'))
369 self.strip_cmd = recipe_d.getVar('STRIP') 369 self.strip_cmd = recipe_d.getVar('STRIP')
370 self.target_arch = recipe_d.getVar('TARGET_ARCH') 370 self.target_arch = recipe_d.getVar('TARGET_ARCH')
371 self.target_dbgsrc_dir = recipe_d.getVar('TARGET_DBGSRC_DIR')
371 self.topdir = recipe_d.getVar('TOPDIR') 372 self.topdir = recipe_d.getVar('TOPDIR')
372 self.workdir = os.path.realpath(recipe_d.getVar('WORKDIR')) 373 self.workdir = os.path.realpath(recipe_d.getVar('WORKDIR'))
373 374