Re: [PATCH v2] Makefile: use shell to calculate map_size

2024-03-10 Thread Dragan Simic
Hello Leon, On 2024-03-04 21:44, Dragan Simic wrote: On 2024-03-04 21:38, Leon M. Busch-George wrote: From: "Leon M. Busch-George" The error message "bc: command not found" is easily missed since the build continues. bc is not a part of coreutils or base-devel. POSIX sh can also do the calcul

Re: [PATCH v2] Makefile: use shell to calculate map_size

2024-03-05 Thread Leon Busch-George
A colleague made me aware that the '[ -n "$$end" ]' is not necessary since 'read' already returns an exit code. v3 inc On Mon, 4 Mar 2024 21:38:56 +0100 "Leon M. Busch-George" wrote: > From: "Leon M. Busch-George" > > The error message "bc: command not found" is easily missed since the > bu

[PATCH v2] Makefile: use shell to calculate map_size

2024-03-04 Thread Leon M. Busch-George
From: "Leon M. Busch-George" The error message "bc: command not found" is easily missed since the build continues. bc is not a part of coreutils or base-devel. POSIX sh can also do the calculation. Signed-off-by: Leon M. Busch-George --- Makefile | 13 + 1 file changed, 9 insertion