From 68be48c28ece46b874b82b5122ca148d9b414a80 Mon Sep 17 00:00:00 2001
From: Daniel Baumann <daniel@debian.org>
Date: Fri, 18 Jan 2008 09:23:32 +0100
Subject: Correcting wrong installation attempt of initramfs generator from
 local-packages.

---
 helpers/lh_chroot_linux-image | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/helpers/lh_chroot_linux-image b/helpers/lh_chroot_linux-image
index 5b519b8..84157d0 100755
--- a/helpers/lh_chroot_linux-image
+++ b/helpers/lh_chroot_linux-image
@@ -102,7 +102,9 @@ EOF
 		then
 			cp config/chroot_local-packages/${LH_INITRAMFS}*.deb chroot/root
 
-			Chroot "dpkg -i /root/${LH_INITRAMFS}*.deb" || true
+			# Installing package
+			Chroot "find /root -name *.deb" > chroot/root/initfs
+			Chroot "xargs --arg-file=/root/initfs dpkg -i" || true
 
 			# Cleaning dependencies
 			case "${LH_APT}" in
@@ -115,7 +117,9 @@ EOF
 					;;
 			esac
 
+			# Removing package files
 			rm -f chroot/root/${LH_INITRAMFS}*.deb
+			rm -f chroot/root/initfs
 		fi
 
 		# Saving cache
-- 
cgit v1.0