diff options
author | jdp <jdp@FreeBSD.org> | 1998-03-14 01:40:31 +0000 |
---|---|---|
committer | jdp <jdp@FreeBSD.org> | 1998-03-14 01:40:31 +0000 |
commit | 613bd0f63171db6cf6e0db318a1557c3d8a026da (patch) | |
tree | 21af493126c638c2b9d345e508739d9f23b814ba | |
parent | 92e03f2d0a84d574b25754bfe50abd791449870d (diff) | |
download | FreeBSD-src-613bd0f63171db6cf6e0db318a1557c3d8a026da.zip FreeBSD-src-613bd0f63171db6cf6e0db318a1557c3d8a026da.tar.gz |
Disable support for the a.out-i386-bsd target. Everything it can do
seems to be supported in the a.out-i386-freebsd target. When both
are present, there are sometimes complaints of "ambiguous file
format."
-rw-r--r-- | gnu/usr.bin/binutils/libbfd/Makefile.i386 | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gnu/usr.bin/binutils/libbfd/Makefile.i386 b/gnu/usr.bin/binutils/libbfd/Makefile.i386 index 2db51f3..bab781f 100644 --- a/gnu/usr.bin/binutils/libbfd/Makefile.i386 +++ b/gnu/usr.bin/binutils/libbfd/Makefile.i386 @@ -1,16 +1,14 @@ # -# $Id$ +# $Id: Makefile.i386,v 1.1 1998/03/12 02:55:26 jdp Exp $ # SRCS+= aout32.c coff-i386.c cofflink.c cpu-i386.c \ - elf32-i386.c elf32.c elflink.c i386bsd.c \ - i386freebsd.c + elf32-i386.c elf32.c elflink.c i386freebsd.c CFLAGS+= -DDEFAULT_VECTOR=bfd_elf32_i386_vec -CFLAGS+= -DSELECT_VECS="&bfd_elf32_i386_vec,&i386freebsd_vec,&i386bsd_vec,&i386coff_vec" +CFLAGS+= -DSELECT_VECS="&bfd_elf32_i386_vec,&i386freebsd_vec,&i386coff_vec" CFLAGS+= -DSELECT_ARCHITECTURES="&bfd_i386_arch" CFLAGS+= -DHAVE_bfd_elf32_i386_vec CFLAGS+= -DHAVE_i386freebsd_vec -CFLAGS+= -DHAVE_i386bsd_vec CFLAGS+= -DHAVE_i386coff_vec CLEANFILES+= elf32-target.h |