Skip to content

Commit

Permalink
vhost-user-rng: fix meson warning
Browse files Browse the repository at this point in the history
vhost-user-rng produces a new meson warning:

Configuring 50-qemu-gpu.json using configuration
Configuring 50-qemu-virtiofsd.json using configuration
Configuring 50-qemu-rng.json using configuration
../../tools/vhost-user-rng/meson.build:7: WARNING: The variable(s) 'libexecdir' in the input file
'tools/vhost-user-rng/50-qemu-rng.json.in' are not present in the given configuration data.
Configuring 50-edk2-i386-secure.json using configuration
Configuring 50-edk2-x86_64-secure.json using configuration
Configuring 60-edk2-aarch64.json using configuration

Fix this up.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
  • Loading branch information
Marcel Apfelbaum authored and mstsirkin committed Jul 16, 2021
1 parent 0c0d224 commit ac9e65d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/vhost-user-rng/meson.build
Expand Up @@ -6,5 +6,5 @@ executable('vhost-user-rng', files(

configure_file(input: '50-qemu-rng.json.in',
output: '50-qemu-rng.json',
configuration: config_host,
configuration: { 'libexecdir' : get_option('prefix') / get_option('libexecdir') },
install_dir: qemu_datadir / 'vhost-user')

0 comments on commit ac9e65d

Please sign in to comment.