diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2013-02-01 05:21:21 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2013-02-01 05:21:21 +0000 |
commit | e87c737fbff986546acdd3917a91f5b185f9d764 (patch) | |
tree | 0fca112bfaf9def926cb4bc279bcc7544757eece /usr.bin | |
parent | 19a793606451fcc605c05ca20bbd8662b0ec2fd9 (diff) |
m88k has switched to ELF and has shared libs.
ok miod@
Diffstat (limited to 'usr.bin')
-rwxr-xr-x | usr.bin/libtool/libtool | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/libtool/libtool b/usr.bin/libtool/libtool index da30c77256b..85010084143 100755 --- a/usr.bin/libtool/libtool +++ b/usr.bin/libtool/libtool @@ -1,5 +1,5 @@ #!/usr/bin/perl -# $OpenBSD: libtool,v 1.38 2012/10/27 10:11:23 espie Exp $ +# $OpenBSD: libtool,v 1.39 2013/02/01 05:21:20 brad Exp $ # Copyright (c) 2007-2010 Steven Mestdagh <steven@openbsd.org> # Copyright (c) 2012 Marc Espie <espie@openbsd.org> @@ -57,14 +57,14 @@ sub new }, $class; ($self->{gnu_arch} = $self->{machine_arch}) =~ s/amd64/x86_64/; - if (grep { $_ eq $self->{machine_arch} } qw(m88k vax)) { + if (grep { $_ eq $self->{machine_arch} } qw(vax)) { $self->{build_libtool_libs} = 'yes'; $self->{noshared} = 1; } else { $self->{build_libtool_libs} = 'no'; $self->{noshared} = 0; } - if (grep { $_ eq $self->{machine_arch} } qw(m68k m88k vax)) { + if (grep { $_ eq $self->{machine_arch} } qw(m68k vax)) { $self->{elf} = 0; } else { $self->{elf} = 1; |