]> bbs.cooldavid.org Git - net-next-2.6.git/blobdiff - scripts/Makefile.lib
bzip2/lzma: handle failures from bzip2 and lzma correctly
[net-next-2.6.git] / scripts / Makefile.lib
index 70b4676e3b99f607c933e4f12e663aa6faee484b..3b949a354470e7022cd71769351324b155d307e1 100644 (file)
@@ -193,10 +193,10 @@ cmd_gzip = gzip -f -9 < $< > $@
 size_append=$(CONFIG_SHELL) $(srctree)/scripts/bin_size
 
 quiet_cmd_bzip2 = BZIP2    $@
-cmd_bzip2 = (bzip2 -9 < $< ; $(size_append) $<) > $@ || (rm -f $@ ; false)
+cmd_bzip2 = (bzip2 -9 < $< && $(size_append) $<) > $@ || (rm -f $@ ; false)
 
 # Lzma
 # ---------------------------------------------------------------------------
 
 quiet_cmd_lzma = LZMA    $@
-cmd_lzma = (lzma -9 -c $< ; $(size_append) $<) >$@ || (rm -f $@ ; false)
+cmd_lzma = (lzma -9 -c $< && $(size_append) $<) >$@ || (rm -f $@ ; false)