Gitweb: http://git.kernel.org/linus/2d74b2c62cf8867d0762f6e6b5ed8906cb6a745f Commit: 2d74b2c62cf8867d0762f6e6b5ed8906cb6a745f Parent: 73d1393eb8507ed5fd7f8e696f6b1ecc18035ebe Author: Wu Zhangjin <wuzhangjin@gmail.com> AuthorDate: Thu Mar 11 17:42:14 2010 +0800 Committer: Michal Marek <mmarek@suse.cz> CommitDate: Thu Mar 11 11:01:15 2010 +0100 scripts/Makefile.lib: Align the output of LZO The output of LZO is not aligned with the other output: ... CC drivers/usb/mon/usbmon.mod.o LZO arch/mips/boot/compressed/vmlinux.lzo ... This patch fixes it. Signed-off-by: Wu Zhangjin <wuzhangjin@gmail.com> Signed-off-by: Michal Marek <mmarek@suse.cz> --- scripts/Makefile.lib | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index f9bdf26..f3ccdb1 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -241,7 +241,7 @@ cmd_lzma = (cat $(filter-out FORCE,$^) | \ lzma -9 && $(call size_append, $(filter-out FORCE,$^))) > $@ || \ (rm -f $@ ; false) -quiet_cmd_lzo = LZO $@ +quiet_cmd_lzo = LZO $@ cmd_lzo = (cat $(filter-out FORCE,$^) | \ lzop -9 && $(call size_append, $(filter-out FORCE,$^))) > $@ || \ (rm -f $@ ; false) -- To unsubscribe from this list: send the line "unsubscribe git-commits-head" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
