summary refs log tree commit diff stats
path: root/bsd-user
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2021-11-17 16:35:01 +0100
committerRichard Henderson <richard.henderson@linaro.org>2021-12-20 10:13:43 -0800
commit3363615a65af8a09d8adbd19ed3ae6b52f26ca7a (patch)
treee7a4dc724b5fd19cef3264170b2cb52c0c393828 /bsd-user
parent4d06bb4e030fcb99c161d070f22e4ca79aced0a9 (diff)
downloadfocaccia-qemu-3363615a65af8a09d8adbd19ed3ae6b52f26ca7a.tar.gz
focaccia-qemu-3363615a65af8a09d8adbd19ed3ae6b52f26ca7a.zip
meson: Move bsd_user_ss to bsd-user/
We have no need to reference bsd_user_ss outside of bsd-user.
Go ahead and merge it directly into specific_ss.

Reviewed-by: Warner Losh <imp@bsdimp.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'bsd-user')
-rw-r--r--bsd-user/meson.build4
1 files changed, 4 insertions, 0 deletions
diff --git a/bsd-user/meson.build b/bsd-user/meson.build
index 25c3976ead..9fcb80c3fa 100644
--- a/bsd-user/meson.build
+++ b/bsd-user/meson.build
@@ -2,6 +2,8 @@ if not have_bsd_user
    subdir_done()
 endif
 
+bsd_user_ss = ss.source_set()
+
 common_user_inc += include_directories('.')
 
 bsd_user_ss.add(files(
@@ -17,3 +19,5 @@ bsd_user_ss.add(files(
 
 # Pull in the OS-specific build glue, if any
 subdir(targetos)
+
+specific_ss.add_all(when: 'CONFIG_BSD_USER', if_true: bsd_user_ss)