diff options
Diffstat (limited to 'lib/csu/alpha/Makefile')
-rw-r--r-- | lib/csu/alpha/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/csu/alpha/Makefile b/lib/csu/alpha/Makefile index f1aebe8ee1a..2a8a144c51e 100644 --- a/lib/csu/alpha/Makefile +++ b/lib/csu/alpha/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.14 2004/01/08 14:59:15 drahn Exp $ +# $OpenBSD: Makefile,v 1.15 2004/10/21 19:57:42 kettenis Exp $ # $NetBSD: Makefile,v 1.6 1996/10/18 05:27:38 thorpej Exp $ CFLAGS+= -DLIBC_SCCS -DELFSIZE=64 @@ -25,9 +25,10 @@ gcrt0.o: crt0.c @${LD} -x -r -o ${.TARGET} ${.TARGET}.o @rm -f ${.TARGET}.o +# XXX temporary hack until __register_frame_info issue is sorted out. crtbegin.o: crtbegin.c - @echo ${COMPILE.c} ${ELFDIR}/crtbegin.c -o ${.TARGET} - @${COMPILE.c} ${ELFDIR}/crtbegin.c -o ${.TARGET}.o + @echo ${COMPILE.c} ${.CURDIR}/crtbegin.c -o ${.TARGET} + @${COMPILE.c} ${.CURDIR}/crtbegin.c -o ${.TARGET}.o @${LD} -x -r -o ${.TARGET} ${.TARGET}.o @rm -f ${.TARGET}.o |