prereq-build: allow host command symlinks to update
authorMichael Pratt <mcpratt@pm.me>
Sun, 22 May 2022 10:10:56 +0000 (06:10 -0400)
committerPetr Štetiar <ynezz@true.cz>
Sun, 21 May 2023 17:39:22 +0000 (19:39 +0200)
commitf75204036ccc56700df18258602cc65726dd653b
tree65de26493cb2ab729c2284c08263169c9b544e49
parent38c150612cc9be488527e342db92d5c74093213f
prereq-build: allow host command symlinks to update

This makes the prereq stage update the symlinks
installed into staging_dir/host/bin
by rearrainging the way they are verified.

Before, seeing or installing a symlink would result in
a successful exit code, and not installing a symlink
would result is a failed exit code. However,
that is not able to account for the difference
between existing good and bad links, or whether
the link would be the same if it was reinstalled,
because the check can match the program to a different path.

Instead, let a success exit code represent
identifying an existing symlink as exactly the same
as what would be installed if it did not exist,
and let a fail exit code represent
needing to install the symlink
or not having a match to the check criteria.

The failing exit code is caught by a new second attempt
for all of the check-* targets which will then indicate
to the user that there was an update by having a success
exit code when the check is run again and the link is the same.

When there is nothing to update, the checks will run only once.

This relies on the ls command to be POSIX-conformant with long format:
"path/to/link -> target/of/link"

Also, make sure the symlink is executable, not just a file,
and the directory only needs to be created once.

Fixes: #12610
Signed-off-by: Michael Pratt <mcpratt@pm.me>
include/prereq.mk