From: mariusgroeger Date: Fri, 22 Mar 2002 16:04:10 +0000 (+0000) Subject: Fix name of ELF image X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=3b9b8b787ffaf174025b7800f89737edfe151498;p=users%2Frw%2Farmboot.git Fix name of ELF image --- diff --git a/MAKEALL b/MAKEALL index c0ddc26..d0fd084 100755 --- a/MAKEALL +++ b/MAKEALL @@ -37,7 +37,7 @@ build_target() { ${MAKE} all 2>&1 >LOG/$target.MAKELOG | tee LOG/$target.ERR ${CROSS_COMPILE:-arm_armv4-}size armboot | tee -a LOG/$target.MAKELOG test -n "$KEEP_BINARY" && cp armboot.bin LOG/$target.bin - test -n "$KEEP_ELF" && cp armboot.bin LOG/$target.elf + test -n "$KEEP_ELF" && cp armboot LOG/$target.elf } #-----------------------------------------------------------------------