~ubuntu-branches/ubuntu/maverick/pdl/maverick

« back to all changes in this revision

Viewing changes to Basic/Makefile.PL

  • Committer: Bazaar Package Importer
  • Author(s): Andres Rodriguez
  • Date: 2009-12-05 12:37:41 UTC
  • mfrom: (2.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091205123741-ilqkc9s4zlk71z13
Tags: 1:2.4.5+dfsg-2ubuntu1
* Merge from debian testing (LP: #492898), remaining changes:
  - debian/perldl.conf: Enabled NAN support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
                    'Primitive','Slices','Test','Math','MatrixOps','Complex'],
36
36
);
37
37
 
38
 
# modify clean method not to delete files named 'core'
 
38
# modify clean method not to delete files named 'core' 
 
39
# (required for MacOSX, where "Core" and "core" are 
 
40
# indistinguishable)
39
41
package MY; # so that "SUPER" works right
 
42
 
40
43
sub clean {
41
44
  my $inherited = shift->SUPER::clean(@_);
42
45
  $inherited =~ s/\s+core\s/ /;