Skip to content

Commit

Permalink
don't generate MANIFEST.SKIP during distclean
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.perl.org/modules/Module-Build/trunk@13579 50811bd7-b8ce-0310-adc1-d9db26280581
  • Loading branch information
xdg committed Nov 22, 2009
1 parent c7b08b2 commit b3cef5f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Changes
Expand Up @@ -7,9 +7,12 @@ Revision history for Perl extension Module::Build.
- bundle_inc.t is more careful about permissions and open filehandles
to avoid failures/skips on Win32 [David Golden]

- fix compilation error in Module::Build::Platform::VMS (RT#51766)
- Fix compilation error in Module::Build::Platform::VMS (RT#51766)
[David Golden]

- Don't generate a MANIFEST.SKIP during distclean [reported by Zefram,
fixed by David Golden]

0.35_09 - Thu Nov 19 01:30:42 EST 2009

Bug fixes:
Expand Down
2 changes: 1 addition & 1 deletion lib/Module/Build/Base.pm
Expand Up @@ -3483,7 +3483,7 @@ sub ACTION_dist {
sub ACTION_distcheck {
my ($self) = @_;

$self->_check_manifest_skip;
$self->_check_manifest_skip unless $self->invoked_action eq 'distclean';

require ExtUtils::Manifest;
local $^W; # ExtUtils::Manifest is not warnings clean.
Expand Down

0 comments on commit b3cef5f

Please sign in to comment.