summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/lib/devtool/ide_sdk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/devtool/ide_sdk.py b/scripts/lib/devtool/ide_sdk.py
index 3986dc1436..1467974480 100755
--- a/scripts/lib/devtool/ide_sdk.py
+++ b/scripts/lib/devtool/ide_sdk.py
@@ -750,7 +750,7 @@ class RecipeModified:
750 does not need to start a bitbake server. All information from tinfoil 750 does not need to start a bitbake server. All information from tinfoil
751 is hard-coded in the generated script. 751 is hard-coded in the generated script.
752 """ 752 """
753 cmd_lines = ['#!/usr/bin/env python3'] 753 cmd_lines = ['#!%s' % str(sys.executable)]
754 cmd_lines.append('import sys') 754 cmd_lines.append('import sys')
755 cmd_lines.append('devtool_sys_path = %s' % str(sys.path)) 755 cmd_lines.append('devtool_sys_path = %s' % str(sys.path))
756 cmd_lines.append('devtool_sys_path.reverse()') 756 cmd_lines.append('devtool_sys_path.reverse()')