aboutsummaryrefslogtreecommitdiff
path: root/build_tc.py
diff options
context:
space:
mode:
Diffstat (limited to 'build_tc.py')
-rwxr-xr-xbuild_tc.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/build_tc.py b/build_tc.py
index c14b6905..4f022d29 100755
--- a/build_tc.py
+++ b/build_tc.py
@@ -59,7 +59,8 @@ class ToolchainPart(object):
cross_symlink = os.path.join(self._chromeos_root, 'chroot',
'usr/local/bin/emerge-%s' % self._board)
if not os.path.exists(cross_symlink):
- command = 'setup_board --board=%s' % self._board
+ command = ('%s/setup_board --board=%s' % (misc.CHROMEOS_SCRIPTS_DIR,
+ self._board))
self._ce.ChrootRunCommand(self._chromeos_root, command)
def Build(self):