From: Wolfgang Denk Date: Wed, 14 Jan 2009 21:35:30 +0000 (+0100) Subject: cpu/mpc824x/Makefile: fix warning with parallel builds X-Git-Tag: v2009.01-rc2~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=e92c9a860e44c14513c8909ce4299e253a775eeb;p=u-boot cpu/mpc824x/Makefile: fix warning with parallel builds Parallel builds would occasionally issue this build warning: ln: creating symbolic link `cpu/mpc824x/bedbug_603e.c': File exists Use "ln -sf" as quick work around for the issue. Signed-off-by: Wolfgang Denk --- diff --git a/cpu/mpc824x/Makefile b/cpu/mpc824x/Makefile index f249dd7c3b..a57ad12c41 100644 --- a/cpu/mpc824x/Makefile +++ b/cpu/mpc824x/Makefile @@ -44,7 +44,7 @@ $(LIB): $(OBJS) $(AR) $(ARFLAGS) $@ $(OBJS) $(obj)bedbug_603e.c: - ln -s $(src)../mpc8260/bedbug_603e.c $(obj)bedbug_603e.c + ln -sf $(src)../mpc8260/bedbug_603e.c $(obj)bedbug_603e.c #########################################################################