diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2005-04-28 21:30:14 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2005-04-28 21:30:14 +0000 |
commit | 5e981d5bb68efeabc1e01c6560f8ccc86fae2976 (patch) | |
tree | 88e8867e50385e35d5fe4a735e85da805c74ece3 | |
parent | 55f482747226b697007629febd6bb83fc205ce25 (diff) |
also use new libobjc on old architectures, since it builds fine with
gcc 2.95.
tests and okay miod@, marc@.
-rw-r--r-- | gnu/egcs/Makefile.bsd-wrapper | 4 | ||||
-rw-r--r-- | gnu/lib/Makefile | 4 | ||||
-rw-r--r-- | include/Makefile | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/gnu/egcs/Makefile.bsd-wrapper b/gnu/egcs/Makefile.bsd-wrapper index cc3daf9ea08..3a5d6e08dce 100644 --- a/gnu/egcs/Makefile.bsd-wrapper +++ b/gnu/egcs/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.7 2004/01/23 18:21:13 espie Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.8 2005/04/28 21:30:13 espie Exp $ .include <bsd.own.mk> USE_GCC3?=No @@ -7,7 +7,7 @@ USE_GCC3?=No SUBDIR+= libio libf2c libobjc libstdc++ .else . if ${USE_GCC3:L} == "no" -SUBDIR+= libio libf2c libstdc++ libobjc +SUBDIR+= libio libf2c libstdc++ . else SUBDIR+= . endif diff --git a/gnu/lib/Makefile b/gnu/lib/Makefile index 27681bd9235..62cd84c74d2 100644 --- a/gnu/lib/Makefile +++ b/gnu/lib/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.11 2004/03/01 02:52:11 drahn Exp $ +# $OpenBSD: Makefile,v 1.12 2005/04/28 21:30:13 espie Exp $ .include <bsd.own.mk> USE_GCC3?=No @@ -9,7 +9,7 @@ SUBDIR+=libiberty libobjc libstdc++ ../egcs libreadline libf2c . if ${USE_GCC3:L} == "yes" SUBDIR+=libiberty libobjc libstdc++ libreadline libf2c . else -SUBDIR+=libiberty ../egcs libreadline +SUBDIR+=libiberty libobjc ../egcs libreadline . endif .endif diff --git a/include/Makefile b/include/Makefile index 9e634127a99..75c7778e76b 100644 --- a/include/Makefile +++ b/include/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.131 2005/04/18 16:17:43 millert Exp $ +# $OpenBSD: Makefile,v 1.132 2005/04/28 21:30:13 espie Exp $ # $NetBSD: Makefile,v 1.59 1996/05/15 21:36:43 jtc Exp $ # @(#)Makefile 5.45.1.1 (Berkeley) 5/6/91 @@ -63,7 +63,7 @@ WDIRS+= ../gnu/lib/libstdc++ ../gnu/usr.bin/gcc ../gnu/lib/libobjc \ PWDIRS+= ../gnu/lib/libstdc++ ../gnu/lib/libf2c .else WDIRS+= ../gnu/egcs/libio ../gnu/egcs/libstdc++ \ - ../gnu/egcs/libf2c ../gnu/egcs/libobjc ../gnu/egcs/gcc + ../gnu/egcs/libf2c ../gnu/lib/libobjc ../gnu/egcs/gcc PWDIRS+= ../gnu/egcs/libf2c .endif |