diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-03-02 10:48:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-02 10:48:42 +0100 |
commit | a42549b8f703754a43bad2557357cb7046874118 (patch) | |
tree | 0c9721b7592f1f5a7fa6af9cf675f8f72a6ee2f3 /platform/x11/detect.py | |
parent | 2fa5bb6be78e4f6130dceae02caf8afa5f61b578 (diff) | |
parent | c77c4ef3b1ef4a3576f9bc6c8e4eab91604018d9 (diff) |
Merge pull request #26474 from akien-mga/scons-silence-x11
SCons: Reduce spam from x11:can_build
Diffstat (limited to 'platform/x11/detect.py')
-rw-r--r-- | platform/x11/detect.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/platform/x11/detect.py b/platform/x11/detect.py index 1355ae542d..b5ad59e60a 100644 --- a/platform/x11/detect.py +++ b/platform/x11/detect.py @@ -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 ") |