Skip to content
Snippets Groups Projects
Commit e92c9a86 authored by Wolfgang Denk's avatar Wolfgang Denk
Browse files

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: default avatarWolfgang Denk <wd@denx.de>
parent 5f01ea63
No related branches found
No related tags found
No related merge requests found
......@@ -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
#########################################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment