From c92530dfb66132b46f3bbaca8605edaa331633e2 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Thu, 2 May 2024 23:11:57 +0200 Subject: [PATCH] cloud-hypervisor: fix license installation. --- srcpkgs/cloud-hypervisor/template | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/srcpkgs/cloud-hypervisor/template b/srcpkgs/cloud-hypervisor/template index 8a789956f04..7831dbb6f90 100644 --- a/srcpkgs/cloud-hypervisor/template +++ b/srcpkgs/cloud-hypervisor/template @@ -14,6 +14,7 @@ checksum=2b456498d72e8cbfd199f1efbfd178e076967949733318bd043db79ee0d50cd5 post_install() { vbin scripts/ch-trace-visualiser.py ch-trace-visualiser - vlicense LICENSE-APACHE - vlicense LICENSE-BSD-3-Clause + for f in LICENSES/*; do + vlicense $f + done }