diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2012-07-10 13:32:11 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2012-07-10 13:32:11 +0000 |
commit | b16f2e96bc757b77b35fff0983b26c50ba37655e (patch) | |
tree | ae5daa44b2c72b67d255e90f2e02b351d39934a4 /usr.bin/libtool/LT/Program.pm | |
parent | 7b8b53306400e4a0b44009bf4edafc1cd28b166d (diff) |
bye-bye Getopt::Long
Diffstat (limited to 'usr.bin/libtool/LT/Program.pm')
-rw-r--r-- | usr.bin/libtool/LT/Program.pm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/usr.bin/libtool/LT/Program.pm b/usr.bin/libtool/LT/Program.pm index 073b1625937..4540f62d52f 100644 --- a/usr.bin/libtool/LT/Program.pm +++ b/usr.bin/libtool/LT/Program.pm @@ -1,4 +1,4 @@ -# $OpenBSD: Program.pm,v 1.7 2012/07/10 12:24:45 espie Exp $ +# $OpenBSD: Program.pm,v 1.8 2012/07/10 13:32:10 espie Exp $ # Copyright (c) 2007-2010 Steven Mestdagh <steven@openbsd.org> # Copyright (c) 2012 Marc Espie <espie@openbsd.org> @@ -94,9 +94,9 @@ use File::Basename; sub link { my ($class, $self, $ltprog, $ltconfig, $dirs, $libs, $deplibs, - $libdirs, $parser, $opts) = @_; + $libdirs, $parser, $gp) = @_; - tsay {"linking program (", ($opts->{'static'}) ? "not " : "", + tsay {"linking program (", ($gp->static ? "not " : ""), "dynamically linking not-installed libtool libraries)"}; my $what = ref($self); @@ -137,11 +137,11 @@ sub link } my $symbolsfile; - if ($opts->{'export-symbols'}) { - $symbolsfile = $opts->{'export-symbols'}; - } elsif ($opts->{'export-symbols-regex'}) { + if ($gp->export_symbols) { + $symbolsfile = $gp->export_symbols; + } elsif ($gp->export_symbols_regex) { ($symbolsfile = "$odir/$ltdir/$fname") =~ s/\.la$/.exp/; - LT::Archive->get_symbollist($symbolsfile, $opts->{'export-symbols-regex'}, $self->{objlist}); + LT::Archive->get_symbollist($symbolsfile, $gp->export_symbols_regex, $self->{objlist}); } $libdirs = reverse_zap_duplicates_ref($libdirs); # add libdirs to rpath if they are not in standard lib path @@ -164,7 +164,7 @@ sub link $libs->{$k} = LT::Library->new($k); } my $l = $libs->{$k}; - $l->find($dirs, 1, $opts->{'static'}, $what); + $l->find($dirs, 1, $gp->static, $what); } my @libobjects = values %$libs; |