mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-02-16 16:41:42 +00:00
build script: fix missing symlink cleanup in prefix directory
This commit is contained in:
parent
3806c4554e
commit
2d534e7872
1 changed files with 2 additions and 2 deletions
4
build.py
4
build.py
|
@ -1996,8 +1996,8 @@ class Builder(object):
|
||||||
if dep.is_dir():
|
if dep.is_dir():
|
||||||
Builder.symlink_directory(dep.path, self.prefix_path, cleanup)
|
Builder.symlink_directory(dep.path, self.prefix_path, cleanup)
|
||||||
|
|
||||||
# Do symlink cleanup only once
|
# Do symlink cleanup only once
|
||||||
cleanup = False
|
cleanup = False
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def symlink_directory(src_path: str, dst_path: str, cleanup=True):
|
def symlink_directory(src_path: str, dst_path: str, cleanup=True):
|
||||||
|
|
Loading…
Reference in a new issue