Subject: | FindBin::libs still doesn't compile because of abs_path under Win32 |
Thanks for providing a fix for bug #24946! Unfortunately, it didn't
solve the problem.
I've patched the code myself, and my solution worked. I believe you'd
better reverse to version 1.33 of the module and apply the simplier
patch: it just checks if abs_path works for directory always missing at
least under Win32 (see line 60):
unless( eval { abs_path cwd } && eval { abs_path '//' } )
instead of:
unless( eval { abs_path cwd } )
and replaces abs_path with rel2abs in case the first one doesn't work.
Thanks a lot!
P.S.: Test 03.t always fails on @binz export test - just because there
is really no bin directory along the path of test directory. So you'd
either need to add empty bin directory in the distribution or rethink
the test :). Thanks!