mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 03:51:33 +00:00
aedi: workaround devilutionx compilation issue
This commit is contained in:
parent
501e42fd8e
commit
5cae91d01a
1 changed files with 6 additions and 0 deletions
|
@ -297,6 +297,12 @@ class DevilutionXTarget(CMakeMainTarget):
|
|||
|
||||
super().configure(state)
|
||||
|
||||
# Remove version file that is included erroneously because of case-insensitive file system
|
||||
version_file = state.build_path + '_deps/libzt-src/ext/ZeroTierOne/ext/miniupnpc/VERSION'
|
||||
|
||||
if os.path.exists(version_file):
|
||||
os.unlink(version_file)
|
||||
|
||||
|
||||
class EDuke32Target(MakeMainTarget):
|
||||
def __init__(self, name='eduke32'):
|
||||
|
|
Loading…
Reference in a new issue