diff options
author | Simon Ser <contact@emersion.fr> | 2023-11-21 17:22:02 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2023-11-21 17:22:02 +0100 |
commit | fe53ec693789afb44c899cad8c2df70c8f9f9023 (patch) | |
tree | 604edd9166af3676eaec84dbc5af43ec5e4ca64e | |
parent | 767eedd3cbe9900687bf3b82236320dcd7b77aae (diff) |
tinywl: fix wlroots dependency constraint in Makefile
-rw-r--r-- | tinywl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tinywl/Makefile b/tinywl/Makefile index 0cfb3cd2..8f1df207 100644 --- a/tinywl/Makefile +++ b/tinywl/Makefile @@ -1,7 +1,7 @@ WAYLAND_PROTOCOLS=$(shell pkg-config --variable=pkgdatadir wayland-protocols) WAYLAND_SCANNER=$(shell pkg-config --variable=wayland_scanner wayland-scanner) LIBS=\ - $(shell pkg-config --cflags --libs "wlroots >= 0.17.0-dev") \ + $(shell pkg-config --cflags --libs "wlroots >= 0.17.0") \ $(shell pkg-config --cflags --libs wayland-server) \ $(shell pkg-config --cflags --libs xkbcommon) |