diff options
author | Robert Nagy <robert@cvs.openbsd.org> | 2009-11-17 18:53:44 +0000 |
---|---|---|
committer | Robert Nagy <robert@cvs.openbsd.org> | 2009-11-17 18:53:44 +0000 |
commit | 8610f8093a25af453bad88fedf029fc5dfa7997a (patch) | |
tree | 4fdeb432d5c69aa7644942cd6a1f5fdca7024314 /gnu/usr.bin/cc/cc_tools | |
parent | 8078502e8f2a975ee7a7dce5dbb5f1b0f603b292 (diff) |
make this build on sparc64
Diffstat (limited to 'gnu/usr.bin/cc/cc_tools')
-rw-r--r-- | gnu/usr.bin/cc/cc_tools/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/usr.bin/cc/cc_tools/Makefile b/gnu/usr.bin/cc/cc_tools/Makefile index 49524e78812..5f78a6afa20 100644 --- a/gnu/usr.bin/cc/cc_tools/Makefile +++ b/gnu/usr.bin/cc/cc_tools/Makefile @@ -1,5 +1,5 @@ # $FreeBSD: src/gnu/usr.bin/cc/cc_tools/Makefile,v 1.88.8.1 2009/04/15 03:14:26 kensmith Exp $ -# $OpenBSD: Makefile,v 1.2 2009/11/02 09:50:39 jsg Exp $ +# $OpenBSD: Makefile,v 1.3 2009/11/17 18:53:43 robert Exp $ .include <bsd.own.mk> @@ -45,7 +45,9 @@ TARGET_INC+= ${GCC_CPU}/sysv4.h .endif .endif .if ${TARGET_ARCH} == "amd64" -TARgET_INC+= ${GCC_CPU}/x86-64.h +TARGET_INC+= ${GCC_CPU}/x86-64.h +TARGET_INC+= ${GCC_CPU}/openbsd64.h +.elif ${TARGET_ARCH} == "sparc64" TARGET_INC+= ${GCC_CPU}/openbsd64.h .else TARGET_INC+= ${GCC_CPU}/openbsdelf.h |