diff options
author | 2001-09-05 22:27:41 +0000 | |
---|---|---|
committer | 2001-09-05 22:27:41 +0000 | |
commit | 026180581fa94a55bb59293b94db416199089232 (patch) | |
tree | c163a2ac029c02164252dbebf3a5448e84b32de4 | |
parent | OF magic. From NetBSD. (diff) | |
download | wireguard-openbsd-026180581fa94a55bb59293b94db416199089232.tar.xz wireguard-openbsd-026180581fa94a55bb59293b94db416199089232.zip |
Don't build libstdc++ on sparc64.
-rw-r--r-- | gnu/egcs/Makefile.bsd-wrapper | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/egcs/Makefile.bsd-wrapper b/gnu/egcs/Makefile.bsd-wrapper index 410ef9fbde4..93086b6baa5 100644 --- a/gnu/egcs/Makefile.bsd-wrapper +++ b/gnu/egcs/Makefile.bsd-wrapper @@ -1,6 +1,10 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.3 2000/08/25 14:36:38 maja Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.4 2001/09/05 22:27:41 art Exp $ -SUBDIR+= libiberty libio libstdc++ libf2c libobjc +SUBDIR+= libiberty libio libf2c libobjc + +.if (${MACHINE_ARCH} != "sparc64") +SUBDIR+= libstdc++ +.endif # just so that the main directory will have a subdir, which simplifies # libf2c/libobjc build |