diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2022-12-14 13:25:00 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-01-06 00:51:02 +0100 |
commit | f32eb0021a85efaca97f69b0e9201737562a8e4f (patch) | |
tree | 1fd702912586f621ee6bb4020e2cf77250e1c497 /scripts | |
parent | e51340243687a2cd7ffcf0d6e2de030bed4b8720 (diff) | |
download | qemu-f32eb0021a85efaca97f69b0e9201737562a8e4f.zip qemu-f32eb0021a85efaca97f69b0e9201737562a8e4f.tar.gz qemu-f32eb0021a85efaca97f69b0e9201737562a8e4f.tar.bz2 |
meson: accept relative symlinks in "meson introspect --installed" data
When installing shared libraries, as is the case for libvfio-user.so,
Meson will include relative symbolic links in the output of
"meson introspect --installed":
{
"libvfio-user.so": "/usr/local/lib64/libvfio-user.so",
...
}
In the case of scripts/symlink-install-tree.py, this will
be a symbolic link to a symbolic link but, in any case, there is
no issue in creating it.
Cc: qemu-stable@nongnu.org
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/symlink-install-tree.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/symlink-install-tree.py b/scripts/symlink-install-tree.py index a5bf0b0..67cb86d 100644 --- a/scripts/symlink-install-tree.py +++ b/scripts/symlink-install-tree.py @@ -17,7 +17,6 @@ introspect = os.environ.get('MESONINTROSPECT') out = subprocess.run([*introspect.split(' '), '--installed'], stdout=subprocess.PIPE, check=True).stdout for source, dest in json.loads(out).items(): - assert os.path.isabs(source) bundle_dest = destdir_join('qemu-bundle', dest) path = os.path.dirname(bundle_dest) try: |