diff options
author | dfr <dfr@FreeBSD.org> | 1999-05-02 11:38:12 +0000 |
---|---|---|
committer | dfr <dfr@FreeBSD.org> | 1999-05-02 11:38:12 +0000 |
commit | 9d9f67f5dd4bce35479543c4de7e32f3e2a22282 (patch) | |
tree | 457bd81f2544c3792592c179b38ef8dfeaaafe1c /gnu/usr.bin/binutils | |
parent | 64bb59fd597b04f774261fd11fdca9876c0726fe (diff) | |
download | FreeBSD-src-9d9f67f5dd4bce35479543c4de7e32f3e2a22282.zip FreeBSD-src-9d9f67f5dd4bce35479543c4de7e32f3e2a22282.tar.gz |
Enable building gdb under binutils for i386. I can't enable the alpha build
yet since CVS is hiding one of my files.
Diffstat (limited to 'gnu/usr.bin/binutils')
-rw-r--r-- | gnu/usr.bin/binutils/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/usr.bin/binutils/Makefile b/gnu/usr.bin/binutils/Makefile index 7abd4db..36bd435 100644 --- a/gnu/usr.bin/binutils/Makefile +++ b/gnu/usr.bin/binutils/Makefile @@ -1,9 +1,14 @@ # -# $Id: Makefile,v 1.4 1998/10/03 03:59:47 jdp Exp $ +# $Id: Makefile,v 1.5 1999/04/18 10:25:57 obrien Exp $ # SUBDIR= libiberty libbfd libopcodes libbinutils \ addr2line ar as ld nm objcopy objdump ranlib \ size strings strip doc +# Short term measure until I can get CVS to resurrect a file for alpha. +.if ${MACHINE_ARCH} == "i386" +SUBDIR+= gdb +.endif + .include <bsd.subdir.mk> |