Commit 6f67d146 authored by Zachary Ware's avatar Zachary Ware

Make Argument Clinic's '--make' option work on Windows.

parent 488785db
...@@ -4164,7 +4164,7 @@ def main(argv): ...@@ -4164,7 +4164,7 @@ def main(argv):
cmdline.print_usage() cmdline.print_usage()
sys.exit(-1) sys.exit(-1)
for root, dirs, files in os.walk('.'): for root, dirs, files in os.walk('.'):
for rcs_dir in ('.svn', '.git', '.hg', 'build'): for rcs_dir in ('.svn', '.git', '.hg', 'build', 'externals'):
if rcs_dir in dirs: if rcs_dir in dirs:
dirs.remove(rcs_dir) dirs.remove(rcs_dir)
for filename in files: for filename in files:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment