summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin')
-rwxr-xr-xusr.bin/libtool/libtool6
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;