Fixed llvm-build when no targets are enabled

llvm-svn: 206627
This commit is contained in:
Greg Fitzgerald 2014-04-18 17:39:50 +00:00
parent 38fe464df0
commit 986b407f31
1 changed files with 3 additions and 1 deletions

View File

@ -719,7 +719,9 @@ def add_magic_target_components(parser, project, opts):
enable_targets = available_targets.values()
else:
# We support both space separated and semi-colon separated lists.
if ' ' in opts.enable_targets:
if opts.enable_targets == '':
enable_target_names = []
elif ' ' in opts.enable_targets:
enable_target_names = opts.enable_targets.split()
else:
enable_target_names = opts.enable_targets.split(';')