summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrea Bolognani <abologna@redhat.com>2020-08-25 18:30:57 +0200
committerAndrea Bolognani <abologna@redhat.com>2020-09-01 13:22:24 +0200
commit88c3490aa11179d3fc3cd4fbdfbad1c8dc4798c2 (patch)
tree2c7e8231265ed51bf8439afc32568a6bd4a47ae0 /include
parent31fb929eca088cdf5656c34b49336ea959d5e9d6 (diff)
downloadlibvirt-88c3490aa11179d3fc3cd4fbdfbad1c8dc4798c2.tar.gz
meson: Use @BASENAME@ more
This patch takes care of just the obvious cases: there are many more situations where the data we pass to configure_file() could likely be obtained in a more effective way, but we can address the low-hanging fruits as a first approximation. Signed-off-by: Andrea Bolognani <abologna@redhat.com> Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/libvirt/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libvirt/meson.build b/include/libvirt/meson.build
index 4b77a222f0..601b729c22 100644
--- a/include/libvirt/meson.build
+++ b/include/libvirt/meson.build
@@ -25,7 +25,7 @@ include_conf.merge_from(conf)
libvirt_common_h = configure_file(
input: libvirt_common_h_in,
- output: 'libvirt-common.h',
+ output: '@BASENAME@',
configuration: include_conf,
)