Commit 2d74b2c62cf8867d0762f6e6b5ed8906cb6a745f

Authored by Wu Zhangjin
Committed by Michal Marek
1 parent 73d1393eb8

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

scripts/Makefile.lib
... ... @@ -241,7 +241,7 @@
241 241 lzma -9 && $(call size_append, $(filter-out FORCE,$^))) > $@ || \
242 242 (rm -f $@ ; false)
243 243  
244   -quiet_cmd_lzo = LZO $@
  244 +quiet_cmd_lzo = LZO $@
245 245 cmd_lzo = (cat $(filter-out FORCE,$^) | \
246 246 lzop -9 && $(call size_append, $(filter-out FORCE,$^))) > $@ || \
247 247 (rm -f $@ ; false)