From 9582ef4efc72afa9f84b6469b5f81ce5dd8eb15d Mon Sep 17 00:00:00 2001 From: Povilas Kanapickas Date: Mon, 5 Apr 2021 16:24:45 +0300 Subject: [PATCH] meson: Fix typo in libxserver_os dependencies for openbsd This has not been tested, but os_deps is not used anywhere in the file, so it's likely this was a typo. Signed-off-by: Povilas Kanapickas --- os/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os/meson.build b/os/meson.build index 337306bcd..4f1099fc9 100644 --- a/os/meson.build +++ b/os/meson.build @@ -72,7 +72,7 @@ if get_option('xres') # Only the XRes extension cares about the client ID. os_c_args += '-DCLIENTIDS' if host_machine.system() == 'openbsd' - os_deps += cc.find_library('kvm') + os_dep += cc.find_library('kvm') endif endif