summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2012-02-07 10:11:31 +0100
committerDaniel Baumann <daniel@debian.org>2012-02-07 10:11:31 +0100
commit17b425e9bd0acbe47da00f58bebd6e5cf306e071 (patch)
tree8fa9cbe8b8d85161c9c01d63f9ce6428fa021e5e /scripts
parent314d573298f1a44ad34b597fcfe8a0dd8cdd69fa (diff)
downloadvyos-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).
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build/lb_binary_disk2
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