perl: perlmod.mk: use flock when hostpkg/perl used 16382/head
authorEneas U de Queiroz <cotequeiroz@gmail.com>
Mon, 16 Aug 2021 14:07:35 +0000 (11:07 -0300)
committerEneas U de Queiroz <cotequeiroz@gmail.com>
Tue, 17 Aug 2021 15:03:34 +0000 (12:03 -0300)
commit1e18c4324fd1fb43764057fb8f4e9c1ea4a17553
tree2f89f20ff60f00a5bf3ec4909ac6b33335d5c7a6
parent5fca3713f1fd93320cbba66b4249350077c80ec4
perl: perlmod.mk: use flock when hostpkg/perl used

Avoid parallel relinking and usage of the host perl binary by wrapping
its usage around flock calls.

Sometimes, two packages will try to relink the static host perl binary
at the same time.  Neither of them will have the other's module linked
in, and one of them will unavoidably clobber the other one's binary.

This will lead to errors when a package will not be able to find a
module that was supposed to be installed.

To fix that, an exclusive flock is used when relinking, with a 900
seconds timeout to avoid locking up the build process forever.

This is not enough because the binary may be concurrently used to build
another module package; perl is used in Configure, Compile, and Install
procedures.  If timing is right, a package will fail with a "permission
denied" error.

So a shared flock call is added in Configure, Compile, and Install
definitions for host and target, with a shorter, 300 seconds timeout.

Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
lang/perl/perlmod.mk