diff options
author | ru <ru@FreeBSD.org> | 2004-09-10 06:48:04 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-09-10 06:48:04 +0000 |
commit | 1cc09608683a2e94552f699893e87ae03f679560 (patch) | |
tree | 0675b9b6acd03fa6eb5a51165c22abbd4f5fbe52 /gnu/lib/csu | |
parent | 3deecb5cd52190c4f2779b92625e86c06342f9c6 (diff) | |
download | FreeBSD-src-1cc09608683a2e94552f699893e87ae03f679560.zip FreeBSD-src-1cc09608683a2e94552f699893e87ae03f679560.tar.gz |
Fix a problem mentioned in the previous revision in a different,
non-intrusive way. This should also fix the PowerPC build that
broke due to this change.
Diffstat (limited to 'gnu/lib/csu')
-rw-r--r-- | gnu/lib/csu/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/lib/csu/Makefile b/gnu/lib/csu/Makefile index 8506ded..3128219 100644 --- a/gnu/lib/csu/Makefile +++ b/gnu/lib/csu/Makefile @@ -34,11 +34,11 @@ SRCS+= crtsavres.asm TGTOBJS= crtfastmath.o SRCS+= crtfastmath.c .endif -BEGINSRC?= ${SRCS} -ENDSRC?= ${SRCS} +BEGINSRC?= crtstuff.c +ENDSRC?= crtstuff.c all: ${OBJS} ${SOBJS} ${TGTOBJS} -${OBJS} ${SOBJS}: tm.h +${OBJS} ${SOBJS}: ${SRCS:M*.h} CLEANFILES= ${OBJS} ${SOBJS} ${TGTOBJS} |