diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-07-29 11:53:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-29 11:53:02 +0200 |
commit | def0122b79a9f135d81b4cc79a1b5768693381f8 (patch) | |
tree | 36bc5ea901ceee11a789169c76e685e5a5bf6018 /platform/linuxbsd/detect.py | |
parent | 9869182e8a01f803208d319bce8087fd2ff035b4 (diff) | |
parent | f973069afbe97ef8eeede9290bb3de146ace8cc7 (diff) |
Merge pull request #63612 from bruvzg/dbus-wrap
Diffstat (limited to 'platform/linuxbsd/detect.py')
-rw-r--r-- | platform/linuxbsd/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/linuxbsd/detect.py b/platform/linuxbsd/detect.py index 1c75e1c443..87fe2ced33 100644 --- a/platform/linuxbsd/detect.py +++ b/platform/linuxbsd/detect.py @@ -325,7 +325,7 @@ def configure(env): if env["dbus"]: if os.system("pkg-config --exists dbus-1") == 0: # 0 means found env.Append(CPPDEFINES=["DBUS_ENABLED"]) - env.ParseConfig("pkg-config dbus-1 --cflags --libs") + env.ParseConfig("pkg-config dbus-1 --cflags") # Only cflags, we dlopen the library. else: print("Warning: D-Bus development libraries not found. Disabling screensaver prevention.") |