mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 12:01:27 +00:00
build script: allow merging of targets built for only one architecture
This commit is contained in:
parent
ea42013015
commit
1b5f2ccfbc
1 changed files with 1 additions and 1 deletions
2
build.py
2
build.py
|
@ -1943,7 +1943,7 @@ class Builder(object):
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _merge_install_paths(src_paths: typing.Sequence[str], dst_path: str, missing_files_only=False):
|
def _merge_install_paths(src_paths: typing.Sequence[str], dst_path: str, missing_files_only=False):
|
||||||
if len(src_paths) <= 1:
|
if len(src_paths) == 0:
|
||||||
return
|
return
|
||||||
|
|
||||||
if not missing_files_only:
|
if not missing_files_only:
|
||||||
|
|
Loading…
Reference in a new issue