diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2012-07-09 23:13:30 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2012-07-09 23:13:30 +0000 |
commit | 89861ddb9df1d1ab5f0cc407f259e4561cb000aa (patch) | |
tree | 3b1ec7a66cf7542d5ce076ff2ff6f30f3b9c25b4 /usr.bin/libtool | |
parent | 012cb28c91af74ee2a52e92b5dc59adc4d255edb (diff) |
--config had better match more stupid shit.
should fix devel/avr
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"; } } |