mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-17 18:40:02 +00:00
wscript: fix wrong dedicated skip subproject check
This commit is contained in:
parent
c3abec5127
commit
94cbb4e1e0
4
wscript
4
wscript
@ -178,7 +178,7 @@ def configure(conf):
|
|||||||
if conf.env.SINGLE_BINARY and i.singlebin:
|
if conf.env.SINGLE_BINARY and i.singlebin:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if conf.env.DEDICATED and not i.dedicated:
|
if conf.env.DEDICATED and i.dedicated:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if i.ignore:
|
if i.ignore:
|
||||||
@ -197,7 +197,7 @@ def build(bld):
|
|||||||
if bld.env.SINGLE_BINARY and i.singlebin:
|
if bld.env.SINGLE_BINARY and i.singlebin:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if bld.env.DEDICATED and not i.dedicated:
|
if bld.env.DEDICATED and i.dedicated:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if i.ignore:
|
if i.ignore:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user