On Mon, Apr 29, 2024 at 02:08:19PM +0200, Andrzej Hajda wrote: <cut>+# check if we need to recompile - checksum difference and compiler present +MD5_ASMS="$(for a in "${ASMS[@]}"; do echo "${a#*:}"; done | md5sum|cut -b1-32)"Why not use: MD5_ASMS=$(echo "${ASMS[@]}" | md5sum | cut -b1-32) I'm not sure but your check doesn't support function (asm) rename.
-- Zbigniew