bzip2/lzma: don't leave empty files around on failure
authorAlain Knaff <alain@knaff.lu>
Thu, 19 Feb 2009 21:39:21 +0000 (13:39 -0800)
committerH. Peter Anvin <hpa@linux.intel.com>
Thu, 19 Feb 2009 21:39:21 +0000 (13:39 -0800)
Impact: Bugfix, silent build failures

Fix a bug in gen_initramfs_list.sh: in case of failure, it left an
empty output file behind, messing up the next make.

Signed-off-by: Alain Knaff <alain@knaff.lu>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
scripts/gen_initramfs_list.sh

index 41041e4..3eea8f1 100644 (file)
@@ -292,7 +292,8 @@ if [ ! -z ${output_file} ]; then
        if [ "${is_cpio_compressed}" = "compressed" ]; then
                cat ${cpio_tfile} > ${output_file}
        else
-               cat ${cpio_tfile} | ${compr}  - > ${output_file}
+               (cat ${cpio_tfile} | ${compr}  - > ${output_file}) \
+               || (rm -f ${output_file} ; false)
        fi
        [ -z ${cpio_file} ] && rm ${cpio_tfile}
 fi