Author: kwilliams
Date: Thu Jul 19 20:18:36 2007
New Revision: 9780

Modified:
   Module-Build/trunk/   (props changed)
   Module-Build/trunk/lib/Module/Build/Base.pm

Log:
 [EMAIL PROTECTED]:  ken | 2007-07-19 10:15:50 -0500
 Fix comple-error typo


Modified: Module-Build/trunk/lib/Module/Build/Base.pm
==============================================================================
--- Module-Build/trunk/lib/Module/Build/Base.pm (original)
+++ Module-Build/trunk/lib/Module/Build/Base.pm Thu Jul 19 20:18:36 2007
@@ -2871,9 +2871,8 @@
 
   # create a tarball;
   # the directory tar'ed must be blib so we need to do a chdir first
-  $self->_do_in_dir( $ppm, sub {
-                      $self->make_tarball( 'blib', File::Spec->catfile( 
$start_wd, $ppm ) ) 
-                    } );
+  my $target = File::Spec->catfile( File::Spec->updir, $ppm );
+  $self->_do_in_dir( $ppm, sub { $self->make_tarball( 'blib', $target ) } );
 
   $self->depends_on( 'ppd' );
 

Reply via email to