tcmode-external-sourcery: don't fall back to non-prefixed for CSL_TARGET_SYS

Signed-off-by: Christopher Larson <chris_larson@mentor.com>
This commit is contained in:
Christopher Larson
2012-07-29 13:47:38 -04:00
parent aa0df6efd4
commit e8e3508084

View File

@@ -24,7 +24,7 @@ def csl_target_sys(d):
gcc = os.path.join(toolchain_path, 'bin', triplet + '-gcc')
if os.path.exists(gcc):
return triplet + '-'
return ''
return '${TARGET_SYS}-'
TARGET_PREFIX = "${@csl_target_sys(d)}"