Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ExtUtils::Install: Fix POD error | Dominic Hargreaves | 2012-02-11 | 1 | -4/+4 |
| | |||||
* | Packlist.t: add bug number | Father Chrysostomos | 2012-01-03 | 1 | -1/+1 |
| | |||||
* | ExtUtils::Packlist: Restore 5.005 compatibility | Father Chrysostomos | 2012-01-02 | 1 | -1/+1 |
| | | | | I think. I haven’t actually tested it. | ||||
* | [perl #107410] Tests for used-once warnings from ExtUtils::Packlist | Father Chrysostomos | 2012-01-02 | 1 | -2/+14 |
| | |||||
* | Removed 'once' warnings in ExtUtils::Packlist::mkfh. | Joel Berger | 2012-01-02 | 1 | -0/+1 |
| | | | | Fixes cpan bug #50315. | ||||
* | Increase $ExtUtils::Packlist::VERSION to 1.46 | Father Chrysostomos | 2012-01-02 | 1 | -1/+1 |
| | |||||
* | Increase ExtUtils::Packlist::VERSION to 1.45 | Father Chrysostomos | 2011-12-09 | 1 | -1/+1 |
| | |||||
* | Correct POD formatting error: '=back' should be within '=begin =end' block. | jkeenan | 2011-12-09 | 1 | -2/+2 |
| | |||||
* | [RT #36079] Convert ` to '. | jkeenan | 2011-11-22 | 1 | -1/+1 |
| | |||||
* | Keep verbatim pod in ExtUtils::Installed within 80 cols | Father Chrysostomos | 2011-08-09 | 1 | -2/+4 |
| | |||||
* | Adds 'skip_cwd' parameter to ExtUtils::Installed. | David Golden | 2011-07-20 | 4 | -9/+74 |
| | | | | | | With this new parameter, the current directory is not included in the installed module search. This avoids finding modules from other perls which happen to be below the current directory. | ||||
* | Fix broken URLs in ExtUtils-Install/Changes from perlbrowse to git | Leon Brocard | 2011-06-12 | 1 | -2/+2 |
| | |||||
* | Bumping version of ExtUtils::Install per porting/cmpVERSION.pl | Jesse Vincent | 2011-01-20 | 1 | -1/+1 |
| | |||||
* | Fix typos (spelling errors) in dist/* | Peter J. Acklam) (via RT | 2011-01-07 | 4 | -12/+12 |
| | | | | | | | | | # New Ticket Created by (Peter J. Acklam) # Please include the string: [perl #81888] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=81888 > Signed-off-by: Abigail <abigail@abigail.be> | ||||
* | Cannot portably split on $Config{path_sep} -- use quotemeta($Config{path_sep}). | Craig A. Berry | 2010-03-01 | 1 | -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 version | Jesse Vincent | 2009-10-20 | 2 | -3/+3 |
| | |||||
* | Help ExtUtils::Install's tests find PERL_SRC on VMS. | Craig A. Berry | 2009-10-16 | 1 | -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 Clark | 2009-10-11 | 1 | -2/+2 |
| | |||||
* | MakeMaker::Test::Utils::perl_lib now copes with relative paths for core testing. | Nicholas Clark | 2009-10-11 | 1 | -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.t | Jesse Vincent | 2009-10-05 | 2 | -2/+15 |
| | |||||
* | Move ExtUtils::Install from ext/ to dist/ | Nicholas Clark | 2009-09-29 | 13 | -0/+4108 |