summaryrefslogtreecommitdiff
path: root/dist/ExtUtils-Install
Commit message (Collapse)AuthorAgeFilesLines
* Cannot portably split on $Config{path_sep} -- use quotemeta($Config{path_sep}).Craig A. Berry2010-03-011-1/+1
| | | | | | | | | | | | | | | | | Broken in fc5e5837c991d3d3224259ff5c1d728d4e0636e2. On VMS we were getting: $ perl -"MConfig" -e "print join('+',split $Config{path_sep}, 'foo|bar|baz');" f+o+o+|+b+a+r+|+b+a+z which is a *lot* more pieces than we want. What was intended was: $ perl -"MConfig" -e "print join('+',split quotemeta($Config{path_sep}), 'foo|bar|baz');" foo+bar+baz No version bump as this is test infrastructure and 1.55 has not been released outside of development releases of blead.
* ExtUitls::Install had changes since 5.11.0 - bump its versionJesse Vincent2009-10-202-3/+3
|
* Help ExtUtils::Install's tests find PERL_SRC on VMS.Craig A. Berry2009-10-161-1/+1
| | | | We're testing from one level deeper than when we were in lib/.
* Swap the chdir and the call to perl_lib(), to work with relative paths in @INC.Nicholas Clark2009-10-111-2/+2
|
* MakeMaker::Test::Utils::perl_lib now copes with relative paths for core testing.Nicholas Clark2009-10-111-9/+18
| | | | | | | | In the core, @INC already contains the moral equivalent of blib/lib. However, it's a relative path (by default), so make it absolute. It's easier to KISS if this is done *before* any change of directory, so document this, and change the non-core case to add the absolute path of 'blib/lib' to @INC, rather than the absolute path of '../blib/lib'.
* A number of pod fixes found by podcheck.tJesse Vincent2009-10-052-2/+15
|
* Move ExtUtils::Install from ext/ to dist/Nicholas Clark2009-09-2913-0/+4108