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>
This commit is contained in:
parent
73d1393eb8
commit
2d74b2c62c
1 changed files with 1 additions and 1 deletions
|
@ -241,7 +241,7 @@ cmd_lzma = (cat $(filter-out FORCE,$^) | \
|
||||||
lzma -9 && $(call size_append, $(filter-out FORCE,$^))) > $@ || \
|
lzma -9 && $(call size_append, $(filter-out FORCE,$^))) > $@ || \
|
||||||
(rm -f $@ ; false)
|
(rm -f $@ ; false)
|
||||||
|
|
||||||
quiet_cmd_lzo = LZO $@
|
quiet_cmd_lzo = LZO $@
|
||||||
cmd_lzo = (cat $(filter-out FORCE,$^) | \
|
cmd_lzo = (cat $(filter-out FORCE,$^) | \
|
||||||
lzop -9 && $(call size_append, $(filter-out FORCE,$^))) > $@ || \
|
lzop -9 && $(call size_append, $(filter-out FORCE,$^))) > $@ || \
|
||||||
(rm -f $@ ; false)
|
(rm -f $@ ; false)
|
||||||
|
|
Loading…
Add table
Reference in a new issue