summaryrefslogtreecommitdiffstats
path: root/cpu
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2009-01-14 22:35:30 +0100
committerWolfgang Denk <wd@denx.de>2009-01-14 22:35:30 +0100
commite92c9a860e44c14513c8909ce4299e253a775eeb (patch)
tree23706af5e8865a5b010330054f7a9712ed8de8e4 /cpu
parent5f01ea63a6c263767f548b4f61880b08f7850ffc (diff)
downloadblackbird-obmc-uboot-e92c9a860e44c14513c8909ce4299e253a775eeb.tar.gz
blackbird-obmc-uboot-e92c9a860e44c14513c8909ce4299e253a775eeb.zip
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 <wd@denx.de>
Diffstat (limited to 'cpu')
-rw-r--r--cpu/mpc824x/Makefile2
1 files changed, 1 insertions, 1 deletions
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
#########################################################################
OpenPOWER on IntegriCloud