diff options
Diffstat (limited to 'usr.bin/libtool')
-rwxr-xr-x | usr.bin/libtool/libtool | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/libtool/libtool b/usr.bin/libtool/libtool index 07ebcbb444a..423a54832bf 100755 --- a/usr.bin/libtool/libtool +++ b/usr.bin/libtool/libtool @@ -1,5 +1,5 @@ #!/usr/bin/perl -# $OpenBSD: libtool,v 1.32 2012/07/09 21:52:03 espie Exp $ +# $OpenBSD: libtool,v 1.33 2012/07/09 23:13:29 espie Exp $ # Copyright (c) 2007-2010 Steven Mestdagh <steven@openbsd.org> # Copyright (c) 2012 Marc Espie <espie@openbsd.org> @@ -50,6 +50,7 @@ sub new machine_arch => $Config{ARCH}, ltdir => $ltdir, version => $version, + objdir => $ltdir, pic_flags => join(' ', @picflags), }; ($self->{gnu_arch} = $self->{machine_arch}) =~ s/amd64/x86_64/; @@ -67,7 +68,7 @@ sub dump { my $self = shift; while (my ($key, $value) = each(%$self)) { - print "$key = $value\n"; + print "$key=$value\n"; } } |