diff options
author | Nicholas Clark <nick@ccl4.org> | 2013-04-24 17:01:43 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2013-05-21 12:22:48 +0200 |
commit | b4b2fefd8bdd72b0f88245101f270e9dc39568f6 (patch) | |
tree | 92b6282abae94f5e79134ef7e07f9c8ebd22ab6d /dist/ExtUtils-CBuilder | |
parent | fdf38e49aa470e60cb56fdd7a3a49f85da8ea2ce (diff) | |
download | perl-b4b2fefd8bdd72b0f88245101f270e9dc39568f6.tar.gz |
Remove 2 superfluous use lines from ExtUtils::CBuilder.
use IO::File was added with the upgrade to 0.23 (commit c3fb68a339256eb3 in
April 2008), but the use of IO::File in the code was eliminated by the
upgrade to 0.2800 (commit 06e8058f27e4269b in Dec 2010), which replaced
the code in question with use of File::Temp. The latter refactoring also
added the use Data::Dumper; line, but did not add any code which uses
Data::Dumper.
Diffstat (limited to 'dist/ExtUtils-CBuilder')
-rw-r--r-- | dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Base.pm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Base.pm b/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Base.pm index c76489bfd0..479a787b62 100644 --- a/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Base.pm +++ b/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Base.pm @@ -6,13 +6,11 @@ use File::Basename; use Cwd (); use Config; use Text::ParseWords; -use IO::File; -use Data::Dumper;$Data::Dumper::Indent=1; use IPC::Cmd qw(can_run); use File::Temp qw(tempfile); use vars qw($VERSION); -$VERSION = '0.280209'; +$VERSION = '0.280210'; # More details about C/C++ compilers: # http://developers.sun.com/sunstudio/documentation/product/compiler.jsp |