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:57:00 +0000 (19:57 +0200)
commitfdfb848402cb7c43f63be1868d79c30780d1901c
tree8066b7d5416bbd57149e0d7499f8b256111262b1
parent81923802883c19ae5e86006320ab3d3151f3727d
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>
(cherry picked from commit f75204036ccc56700df18258602cc65726dd653b)
include/prereq.mk