Skip to content

Commit

Permalink
Merge pull request #26474 from akien-mga/scons-silence-x11
Browse files Browse the repository at this point in the history
SCons: Reduce spam from x11:can_build
  • Loading branch information
akien-mga authored Mar 2, 2019
2 parents 2fa5bb6 + c77c4ef commit a42549b
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions platform/x11/detect.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,10 @@ def can_build():
# Check the minimal dependencies
x11_error = os.system("pkg-config --version > /dev/null")
if (x11_error):
print("pkg-config not found.. x11 disabled.")
return False

x11_error = os.system("pkg-config x11 --modversion > /dev/null ")
if (x11_error):
print("X11 not found.. x11 disabled.")
return False

x11_error = os.system("pkg-config xcursor --modversion > /dev/null ")
Expand Down

0 comments on commit a42549b

Please sign in to comment.