diff options
author | obrien <obrien@FreeBSD.org> | 1999-04-08 08:19:28 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1999-04-08 08:19:28 +0000 |
commit | 2abaf8ce10fdf400f16dd24ebbf9983df6c6f48d (patch) | |
tree | 8605edcf97786e8dba04400308cfa30eadd49ca6 /gnu/lib | |
parent | c6830aafcd8f3c5d987f307101c1011c7f735f7d (diff) | |
download | FreeBSD-src-2abaf8ce10fdf400f16dd24ebbf9983df6c6f48d.zip FreeBSD-src-2abaf8ce10fdf400f16dd24ebbf9983df6c6f48d.tar.gz |
Don't require gcc/config/${MACHINE_ARCH}/xm-freebsd.h when we already know
the contents of it. Instead create it, so all arch's are consistent.
Diffstat (limited to 'gnu/lib')
-rw-r--r-- | gnu/lib/libgcc/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/lib/libgcc/Makefile b/gnu/lib/libgcc/Makefile index 50dbc71..49095ed 100644 --- a/gnu/lib/libgcc/Makefile +++ b/gnu/lib/libgcc/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.22 1999/04/04 20:41:50 obrien Exp $ +# $Id: Makefile,v 1.23 1999/04/04 20:47:33 obrien Exp $ # GCCDIR= ${.CURDIR}/../../../contrib/egcs/gcc @@ -82,7 +82,8 @@ NEW2POBJS= ${NEW2FUNCS:S/$/.po/} OBJS= ${LIB1OBJS} ${LIB2OBJS} ${NEW1OBJS} ${NEW2OBJS} config.h: - echo '#include "${MACHINE_ARCH}/xm-freebsd.h"' > ${.TARGET} + echo '#include <${MACHINE_ARCH}/xm-${MACHINE_ARCH}.h>' > ${.TARGET} + echo '#include <xm-freebsd.h>' >> ${.TARGET} tconfig.h: echo '#include "${MACHINE_ARCH}/xm-${MACHINE_ARCH}.h"' > ${.TARGET} |