diff options
author | Daniel Baumann <daniel@debian.org> | 2012-02-07 10:11:31 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-02-07 10:11:31 +0100 |
commit | 17b425e9bd0acbe47da00f58bebd6e5cf306e071 (patch) | |
tree | 8fa9cbe8b8d85161c9c01d63f9ce6428fa021e5e | |
parent | 314d573298f1a44ad34b597fcfe8a0dd8cdd69fa (diff) | |
download | vyos-live-build-17b425e9bd0acbe47da00f58bebd6e5cf306e071.tar.gz vyos-live-build-17b425e9bd0acbe47da00f58bebd6e5cf306e071.zip |
Correcting lzcat call in binary_disk to not bail out due to non-standard file extension (unknown suffix -- unchanged), thanks to Luigi Capriotti <l.capriotti@xbmc.org> (Closes: #658995).
-rwxr-xr-x | scripts/build/lb_binary_disk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/lb_binary_disk b/scripts/build/lb_binary_disk index 48bd160e1..a845b2703 100755 --- a/scripts/build/lb_binary_disk +++ b/scripts/build/lb_binary_disk @@ -108,7 +108,7 @@ case "${LB_INITRAMFS}" in ;; lzma) - lzcat "../../${INITRD}" | cpio --quiet -id conf/uuid.conf + lzcat -S "" "../../${INITRD}" | cpio --quiet -id conf/uuid.conf ;; esac |