Skip to content

Commit

Permalink
rename subprocess.cc to reflex its posixness
Browse files Browse the repository at this point in the history
  • Loading branch information
evmar committed Jul 27, 2012
1 parent bb6da9a commit f4b8c75
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def run(*args, **kwargs):
continue

if sys.platform.startswith('win32'):
if filename == 'subprocess.cc':
if src.endswith('-posix.cc'):
continue
else:
if src.endswith('-win32.cc'):
Expand Down
2 changes: 1 addition & 1 deletion configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def shell_escape(str):
objs += cxx('minidump-win32')
objs += cc('getopt')
else:
objs += cxx('subprocess')
objs += cxx('subprocess-posix')
if platform == 'windows':
ninja_lib = n.build(built('ninja.lib'), 'ar', objs)
else:
Expand Down
File renamed without changes.

0 comments on commit f4b8c75

Please sign in to comment.