From f28c9891427336db4904e1438bcfc46ac38cacbf Mon Sep 17 00:00:00 2001 From: Oliver Grawert Date: Wed, 8 Jul 2015 22:51:04 +0200 Subject: [PATCH] Import patches-unapplied version 2.328 to ubuntu/wily-proposed Imported using git-ubuntu import. Changelog parent: 9eaa1cb0b2fa982277c9eac3b6ecd3f6bf75aeac New changelog entries: * fix quoting issue with the last change ... --- debian/changelog | 6 ++++++ .../ubuntu-core/hooks/500-move-kernel-to-device-tar.binary | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 6ae08639..3ab82bc6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +livecd-rootfs (2.328) wily; urgency=medium + + * fix quoting issue with the last change ... + + -- Oliver Grawert Wed, 08 Jul 2015 22:51:04 +0200 + livecd-rootfs (2.327) wily; urgency=medium * merge lp:~sergiusens/livecd-rootfs/snappyDevicePart for using versioned diff --git a/live-build/ubuntu-core/hooks/500-move-kernel-to-device-tar.binary b/live-build/ubuntu-core/hooks/500-move-kernel-to-device-tar.binary index e0f40efc..f6b6686d 100644 --- a/live-build/ubuntu-core/hooks/500-move-kernel-to-device-tar.binary +++ b/live-build/ubuntu-core/hooks/500-move-kernel-to-device-tar.binary @@ -28,8 +28,8 @@ mkdir -p $TMPDIR/assets/ initrd=boot/initrd.img-* - cp -ar "$initrd" $TMPDIR/assets/ - cp -ar "$kernel" $TMPDIR/assets/ + cp -ar $initrd $TMPDIR/assets/ + cp -ar $kernel $TMPDIR/assets/ cp -ar boot/abi-* boot/System.map-* $TMPDIR/assets/ dtbs=$(find lib/firmware -type d -name 'device-tree' -print0)