mirror of
https://github.com/godotengine/godot.git
synced 2024-11-23 12:43:43 +00:00
Merge pull request #88028 from Calinou/wayland-silence-scanner-check
Silence wayland-scanner check in buildsystem
This commit is contained in:
commit
c9c2b12637
@ -207,8 +207,8 @@ def configure(env: "Environment"):
|
||||
env.Append(CPPDEFINES=["SOWRAP_ENABLED"])
|
||||
|
||||
if env["wayland"]:
|
||||
if os.system("wayland-scanner -v") != 0:
|
||||
print("wayland-scanner not found. Disabling wayland support.")
|
||||
if os.system("wayland-scanner -v 2>/dev/null") != 0:
|
||||
print("wayland-scanner not found. Disabling Wayland support.")
|
||||
env["wayland"] = False
|
||||
|
||||
if env["touch"]:
|
||||
|
Loading…
Reference in New Issue
Block a user