diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2004-03-08 23:31:52 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2004-03-08 23:31:52 +0000 |
commit | 2b78831f7de1c92daec2687923cae93e6d2600ad (patch) | |
tree | 45d19e7688da90e836522050d8a15ecadf94c718 /gnu | |
parent | 752d2e872f95e8301e520555e98e39ef4a49fdbe (diff) |
Do not build binutils on arm. ARM needs at least binutils 2.14.
Allows others to build OpenBSD/cats, use binutils from devel/binutils/stable
Requested by deraadt@
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/usr.bin/Makefile b/gnu/usr.bin/Makefile index ec8ac6ddc39..12136e26be5 100644 --- a/gnu/usr.bin/Makefile +++ b/gnu/usr.bin/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.41 2004/01/23 18:21:13 espie Exp $ +# $OpenBSD: Makefile,v 1.42 2004/03/08 23:31:51 drahn Exp $ # $NetBSD: Makefile,v 1.35 1996/04/03 21:20:52 chuck Exp $ .include <bsd.own.mk> @@ -14,7 +14,10 @@ SUBDIR+= ../egcs/gcc . endif .endif -SUBDIR+= cxxfilt cvs groff lynx rcs sendbug binutils +SUBDIR+= cxxfilt cvs groff lynx rcs sendbug +.if ${MACHINE_ARCH} != "arm" +SUBDIR+=binutils +.endif # most ports use binutils gas and ld, some do not (yet). .if ${ELF_TOOLCHAIN:L} == "no" |