summaryrefslogtreecommitdiffstats
path: root/linux-user
diff options
context:
space:
mode:
authorWarner Losh2021-10-09 00:47:37 +0200
committerWarner Losh2021-10-18 20:51:39 +0200
commitdda2da6c94484b85d28fe7c29f7fee562deaf177 (patch)
treecd7ddd9d255d016725cdf7e640f051fd29d43987 /linux-user
parentbsd-user/mmap.c: assert that target_mprotect cannot fail (diff)
downloadqemu-dda2da6c94484b85d28fe7c29f7fee562deaf177.tar.gz
qemu-dda2da6c94484b85d28fe7c29f7fee562deaf177.tar.xz
qemu-dda2da6c94484b85d28fe7c29f7fee562deaf177.zip
meson: *-user: only descend into *-user when configured
To increase flexibility, only descend into *-user when that is configured. This allows *-user to selectively include directories based on the host OS which may not exist on all hosts. Adopt Paolo's suggestion of checking the configuration in the directories that know about the configuration. Message-Id: <20210926220103.1721355-2-f4bug@amsat.org> Message-Id: <20210926220103.1721355-3-f4bug@amsat.org> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Warner Losh <wlosh@bsdimp.com> Acked-by: Paolo Bonzini <pbonzinni@redhat.com> Reviewed-by: Kyle Evans <kevans@FreeBSD.org>
Diffstat (limited to 'linux-user')
-rw-r--r--linux-user/meson.build4
1 files changed, 4 insertions, 0 deletions
diff --git a/linux-user/meson.build b/linux-user/meson.build
index 9549f81682..bf62c13e37 100644
--- a/linux-user/meson.build
+++ b/linux-user/meson.build
@@ -1,3 +1,7 @@
+if not have_linux_user
+ subdir_done()
+endif
+
linux_user_ss.add(files(
'elfload.c',
'exit.c',