diff mbox series

[SRU,X,B] UBUNTU: dkms-build: fix wireguard build logging

Message ID 20210209233320.27291-1-kamal@canonical.com
State New
Headers show
Series [SRU,X,B] UBUNTU: dkms-build: fix wireguard build logging | expand

Commit Message

Kamal Mostafa Feb. 9, 2021, 11:33 p.m. UTC
The dkms-build script (<=bionic) fails to find and display the dkms
build log for some dkms component(s), e.g. wireguard.

Add the missing path and logic matching >=focal's version of the script.

Signed-off-by: Kamal Mostafa <kamal@canonical.com>
---
 debian/scripts/dkms-build | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Tim Gardner Feb. 10, 2021, 12:15 p.m. UTC | #1
On 2/9/21 4:33 PM, Kamal Mostafa wrote:
> The dkms-build script (<=bionic) fails to find and display the dkms
> build log for some dkms component(s), e.g. wireguard.
> 
> Add the missing path and logic matching >=focal's version of the script.
> 
> Signed-off-by: Kamal Mostafa <kamal@canonical.com>
> ---
>   debian/scripts/dkms-build | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/debian/scripts/dkms-build b/debian/scripts/dkms-build
> index 55d09d920746..5e5cef9bd3ec 100755
> --- a/debian/scripts/dkms-build
> +++ b/debian/scripts/dkms-build
> @@ -141,9 +141,9 @@ rc=0
>   	"$dkms_conf" || rc=1
>   
>   # Find the log and add it to our own.
> -for log in "$dkms_dir/build/$dkms_package/$dkms_version/$abi_flavour"/*/"log/make.log"
> +for log in "$dkms_dir/build/$dkms_package/$dkms_version/$abi_flavour"/*/"log/make.log" "$dkms_dir/build/$dkms_package/$dkms_version/build/make.log"
>   do
> -	break
> +	[ -f "$log" ] && break
>   done
>   sed -e "s@$dkms_dir@<<DKMSDIR>>@g" <"$log"
>   
>
Stefan Bader Feb. 10, 2021, 3:34 p.m. UTC | #2
On 10.02.21 00:33, Kamal Mostafa wrote:
> The dkms-build script (<=bionic) fails to find and display the dkms
> build log for some dkms component(s), e.g. wireguard.
> 
> Add the missing path and logic matching >=focal's version of the script.
> 
> Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Acked-by: Stefan Bader <stefan.bader@canonical.com>
> ---

Since this will have no effect on the produced binary kernel packages I think
not having a bug report is acceptable. But when this gets applied I would ask
for having the subject be "UBUNTU: [Packaging] ..." prefix and "Ignore: yes" in
the body.

-Stefan

>  debian/scripts/dkms-build | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/debian/scripts/dkms-build b/debian/scripts/dkms-build
> index 55d09d920746..5e5cef9bd3ec 100755
> --- a/debian/scripts/dkms-build
> +++ b/debian/scripts/dkms-build
> @@ -141,9 +141,9 @@ rc=0
>  	"$dkms_conf" || rc=1
>  
>  # Find the log and add it to our own.
> -for log in "$dkms_dir/build/$dkms_package/$dkms_version/$abi_flavour"/*/"log/make.log"
> +for log in "$dkms_dir/build/$dkms_package/$dkms_version/$abi_flavour"/*/"log/make.log" "$dkms_dir/build/$dkms_package/$dkms_version/build/make.log"
>  do
> -	break
> +	[ -f "$log" ] && break
>  done
>  sed -e "s@$dkms_dir@<<DKMSDIR>>@g" <"$log"
>  
>
diff mbox series

Patch

diff --git a/debian/scripts/dkms-build b/debian/scripts/dkms-build
index 55d09d920746..5e5cef9bd3ec 100755
--- a/debian/scripts/dkms-build
+++ b/debian/scripts/dkms-build
@@ -141,9 +141,9 @@  rc=0
 	"$dkms_conf" || rc=1
 
 # Find the log and add it to our own.
-for log in "$dkms_dir/build/$dkms_package/$dkms_version/$abi_flavour"/*/"log/make.log"
+for log in "$dkms_dir/build/$dkms_package/$dkms_version/$abi_flavour"/*/"log/make.log" "$dkms_dir/build/$dkms_package/$dkms_version/build/make.log"
 do
-	break
+	[ -f "$log" ] && break
 done
 sed -e "s@$dkms_dir@<<DKMSDIR>>@g" <"$log"