On 2021-Jan-28, Andrew Dunstan wrote: ... neat stuff, thanks.
> + # Windows picks up DLLs from the PATH rather than > *LD_LIBRARY_PATH > + # choose the right path separator > + if ($Config{osname} eq 'MSWin32') > + { > + $ENV{PATH} = "$inst/bin;$inst/lib;$ENV{PATH}"; > + } > + else > + { > + $ENV{PATH} = "$inst/bin:$inst/lib:$ENV{PATH}"; > + } Hmm, if only Windows needs lib/ in PATH, then we do we add $inst/lib to PATH even when not Windows? > + if (exists $ENV{DYLIB}) > + { > + $ENV{DYLIB} = "$inst/lib:$ENV{DYLIB}"; > + } > + else > + { > + $ENV{DYLIB} = "$inst/lib}"; Note extra closing } in the string here. -- Álvaro Herrera 39°49'30"S 73°17'W