Open hakonhagland opened 4 years ago
I believe this failure is caused by line 76 in Alien::Build::Util
:
my $target = readlink "$src";
If $src
is /tmp/mirror_src_aCM0/lib/libfoo.so
, readlink
returns libfoo.so.1.2.3
. Note that the prefix /tmp/mirror_src_aCM0/lib
is missing. So later on line 78:
symlink($target, $dst) || die "unable to symlink $target => $dst";
Tries to symlink libfoo.so.1.2.3
to /tmp/mirror_dest_aCM0/lib/libfoo.so.1.2.3
which will create a broken symlink on linux, but will fail on MSYS2.
System info: Windows 10, MSYS2, perl version 5.32.0.