Skip to content

Commit

Permalink
Fix Windows build of zip archives in SCons.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Schwerin committed Mar 23, 2012
1 parent 90a52ee commit 7b39ed7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildscripts/make_archive.py
Expand Up @@ -55,7 +55,7 @@ def parse_options(args):

for input_filename in input_filenames:
if input_filename.startswith('@'):
opts.input_filenames.extend(line.strip() for line in open(input_filename[1:], 'r'))
opts.input_filenames.extend(open(input_filename[1:], 'r').split())
else:
opts.input_filenames.append(input_filename)

Expand Down

0 comments on commit 7b39ed7

Please sign in to comment.