Skip to content

Commit 5cd8e06

Browse files
committed
Fix FTBFS on GNU Hurd: kvm library is not available.
../meson.build:47:2: ERROR: C shared or static library 'kvm' not found
1 parent 09d405f commit 5cd8e06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ else
4343
os = option_os
4444
endif
4545

46-
if os != 'Linux'
46+
if os != 'Linux' and os != 'GNU'
4747
kvm_dep = cc.find_library('kvm', required: true)
4848
else
4949
kvm_dep = []

0 commit comments

Comments
 (0)