From e87c737fbff986546acdd3917a91f5b185f9d764 Mon Sep 17 00:00:00 2001 From: Brad Smith Date: Fri, 1 Feb 2013 05:21:21 +0000 Subject: m88k has switched to ELF and has shared libs. ok miod@ --- usr.bin/libtool/libtool | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.bin/libtool') 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 # Copyright (c) 2012 Marc Espie @@ -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; -- cgit v1.2.3