Message ID | 1244360677-26434-1-git-send-email-vapier@gentoo.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index cba61ca..69e7d8f 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -197,7 +197,7 @@ cmd_gzip = gzip -f -9 < $< > $@ # Bzip2 does not include size in file... so we have to fake that size_append=$(CONFIG_SHELL) $(srctree)/scripts/bin_size -quiet_cmd_bzip2 = BZIP2 $@ +quiet_cmd_bzip2 = BZIP2 $@ cmd_bzip2 = (bzip2 -9 < $< && $(size_append) $<) > $@ || (rm -f $@ ; false) # Lzma
The current bzip2 command has an extra space before the target: MODPOST 4 modules BZIP2 arch/blackfin/boot/vmlinux.bin.bz2 UIMAGE arch/blackfin/boot/vmImage.bz2 Signed-off-by: Mike Frysinger <vapier@gentoo.org> --- scripts/Makefile.lib | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)