Commit e92c9a860e44c14513c8909ce4299e253a775eeb

Authored by Wolfgang Denk
1 parent 5f01ea63a6

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

cpu/mpc824x/Makefile
... ... @@ -44,7 +44,7 @@
44 44 $(AR) $(ARFLAGS) $@ $(OBJS)
45 45  
46 46 $(obj)bedbug_603e.c:
47   - ln -s $(src)../mpc8260/bedbug_603e.c $(obj)bedbug_603e.c
  47 + ln -sf $(src)../mpc8260/bedbug_603e.c $(obj)bedbug_603e.c
48 48  
49 49 #########################################################################
50 50