[BACK]Return to libtool CVS log [TXT][DIR] Up to [local] / src / usr.bin / libtool

Diff for /src/usr.bin/libtool/libtool between version 1.16 and 1.17

version 1.16, 2012/07/07 18:08:11 version 1.17, 2012/07/07 18:21:56
Line 44 
Line 44 
 sub new  sub new
 {  {
     my $class = shift;      my $class = shift;
     my $self = {      bless {
         machine_arch => $Config{'ARCH'},          machine_arch => $Config{'ARCH'},
     };      }, $class;
     bless $self, $class;  
     return $self;  
 }  }
   
 package LT::Options;  package LT::Options;
Line 160 
Line 158 
         notyet          notyet
         );          );
   
 #my $config = LT::OSConfig->new();  my $ltconfig = LT::OSConfig->new;
 my $ltconfig = LT::OSConfig->new();  
 my @no_shared_archs = qw(m88k vax);  my @no_shared_archs = qw(m88k vax);
 (my $gnu_arch = $ltconfig->{'machine_arch'}) =~ s/amd64/x86_64/;  (my $gnu_arch = $ltconfig->{'machine_arch'}) =~ s/amd64/x86_64/;
 my $cwd = getcwd();  my $cwd = getcwd();

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17