diff options
author | 2013-02-02 13:45:11 +0000 | |
---|---|---|
committer | 2013-02-02 13:45:11 +0000 | |
commit | a734f5c570168cd145279c18ffc40917bef1e28b (patch) | |
tree | bb631b0d056541cead98bafdc82e4e9a9f3b5ab9 | |
parent | sync (diff) | |
download | wireguard-openbsd-a734f5c570168cd145279c18ffc40917bef1e28b.tar.xz wireguard-openbsd-a734f5c570168cd145279c18ffc40917bef1e28b.zip |
m68k has switched to ELF.
ok miod@
-rwxr-xr-x | usr.bin/libtool/libtool | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/libtool/libtool b/usr.bin/libtool/libtool index 85010084143..bbf435b624e 100755 --- a/usr.bin/libtool/libtool +++ b/usr.bin/libtool/libtool @@ -1,5 +1,5 @@ #!/usr/bin/perl -# $OpenBSD: libtool,v 1.39 2013/02/01 05:21:20 brad Exp $ +# $OpenBSD: libtool,v 1.40 2013/02/02 13:45:11 brad Exp $ # Copyright (c) 2007-2010 Steven Mestdagh <steven@openbsd.org> # Copyright (c) 2012 Marc Espie <espie@openbsd.org> @@ -64,7 +64,7 @@ sub new $self->{build_libtool_libs} = 'no'; $self->{noshared} = 0; } - if (grep { $_ eq $self->{machine_arch} } qw(m68k vax)) { + if (grep { $_ eq $self->{machine_arch} } qw(vax)) { $self->{elf} = 0; } else { $self->{elf} = 1; |