summaryrefslogtreecommitdiff
path: root/tools/build.py
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2019-03-04 20:24:51 -0800
committerBert Belder <bertbelder@gmail.com>2019-03-04 21:01:52 -0800
commit860be9f0de0713150030428db44d326831ce6ad2 (patch)
tree25ee003816b862f9478fa41294058dbbf52627b7 /tools/build.py
parent25359bcc03b2c819d6573f273c8892a6c5a978ee (diff)
tools: remove fix_symlinks() function
This fixes an issue on Windows that causes build to fails when fix_symlinks() is called concurrently with another build step. It is also no longer necessary, since recent versions of git know how to properly create symbolic links on checkout.
Diffstat (limited to 'tools/build.py')
-rwxr-xr-xtools/build.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/build.py b/tools/build.py
index 32d43c2ff..e66f1f094 100755
--- a/tools/build.py
+++ b/tools/build.py
@@ -10,8 +10,6 @@ from util import build_path, enable_ansi_colors, run
def main(argv):
enable_ansi_colors()
- third_party.fix_symlinks()
-
ninja_args = argv[1:]
if not "-C" in ninja_args:
if not os.path.isdir(build_path()):