From: Wu Zhangjin Date: Thu, 11 Mar 2010 09:42:14 +0000 (+0800) Subject: scripts/Makefile.lib: Align the output of LZO X-Git-Tag: v2.6.35-rc2~61^2~13 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=2d74b2c62cf8867d0762f6e6b5ed8906cb6a745f;p=~emulex%2Finfiniband.git 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 Signed-off-by: Michal Marek --- diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index f9bdf264473..f3ccdb1b302 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)