diff options
| author | Wolfgang Denk <wd@denx.de> | 2010-09-28 23:02:05 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2010-09-28 23:02:05 +0200 | 
| commit | 949c80e100699e1cc4bac8c0cf345e02f232d76e (patch) | |
| tree | 7a294fe997fb8f5c6dc17497577808aad657a637 | |
| parent | e299e3f7a3796fd7051efea8177e85b794a99d7c (diff) | |
| download | olio-uboot-2014.01-949c80e100699e1cc4bac8c0cf345e02f232d76e.tar.xz olio-uboot-2014.01-949c80e100699e1cc4bac8c0cf345e02f232d76e.zip | |
mpc512x: fix build issues
Commit 800eb0964 "POST cleanup." removed file
arch/powerpc/cpu/mpc512x/common.c but failed to remove the reference
to it from arch/powerpc/cpu/mpc512x/Makefile which causes somewhat
obscure build errors:
make[1]: *** No rule to make target `/work/wd/tmp-ppc/arch/powerpc/cpu/mpc512x/.depend', needed by `_depend'.  Stop.
Fix these.
Signed-off-by: Wolfgang Denk <wd@denx.de>
| -rw-r--r-- | arch/powerpc/cpu/mpc512x/Makefile | 1 | 
1 files changed, 0 insertions, 1 deletions
| diff --git a/arch/powerpc/cpu/mpc512x/Makefile b/arch/powerpc/cpu/mpc512x/Makefile index 28926e0d2..ae2f6dc8c 100644 --- a/arch/powerpc/cpu/mpc512x/Makefile +++ b/arch/powerpc/cpu/mpc512x/Makefile @@ -29,7 +29,6 @@ LIB	= $(obj)lib$(CPU).a  START	= start.o  COBJS-y	:= cpu.o  COBJS-y	+= traps.o -COBJS-y += common.o  COBJS-y += cpu_init.o  COBJS-y += fixed_sdram.o  COBJS-y += i2c.o |