From patchwork Wed Jan 2 17:59:24 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [U-Boot] Makefile: remove MLO.byteswap on clobber Date: Wed, 02 Jan 2013 07:59:24 -0000 From: Nishanth Menon X-Patchwork-Id: 209124 Message-Id: <1357149564-23377-1-git-send-email-nm@ti.com> To: u-boot Cc: Tom Rini On clobber, do a cleanup even for SPL build else, we'd have MLO.byteswap remaining for certain platforms like am33xx SPL builds Signed-off-by: Nishanth Menon --- To notice the missing cleanup: With the cross compile flags set, do: make am335x_evm_config; make; make clobber; git status On branch master Untracked files: (use "git add ..." to include in what will be committed) MLO.byteswap Patch based on:v2013.01-rc2-172-gf8cfcf1 (master) git://git.denx.de/u-boot.git Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a7b6cd1..4e64622 100644 --- a/Makefile +++ b/Makefile @@ -869,7 +869,7 @@ clobber: tidy @rm -f $(obj)nand_spl/{u-boot-nand_spl.lds,u-boot-spl,u-boot-spl.map} @rm -f $(obj)spl/{u-boot-spl,u-boot-spl.bin,u-boot-spl.map} @rm -f $(obj)spl/{u-boot-spl.lds,u-boot.lst} - @rm -f $(obj)MLO + @rm -f $(obj)MLO MLO.byteswap @rm -f $(obj)SPL @rm -f $(obj)tools/xway-swap-bytes @rm -f $(obj)arch/powerpc/cpu/mpc824x/bedbug_603e.c