[SCM] debian-live/live-helper branch, master, updated. 1.0_a44-1-16-gef8df9b

Daniel Baumann daniel at debian.org
Sat Apr 19 15:35:57 UTC 2008


The following commit has been merged in the master branch:
commit f8c8aaa99a2c07ff31173ff0cedef0a0bbc1bdd5
Author: Chris Lamb <chris at chris-lamb.co.uk>
Date:   Thu Apr 17 21:26:34 2008 +0100

    Tidy calls to new Expand_packagelist
    
    Signed-off-by: Chris Lamb <chris at chris-lamb.co.uk>

diff --git a/helpers/lh_binary_local-packageslists b/helpers/lh_binary_local-packageslists
index cc3c87d..5804fa1 100755
--- a/helpers/lh_binary_local-packageslists
+++ b/helpers/lh_binary_local-packageslists
@@ -51,8 +51,7 @@ then
 	for PACKAGESLIST in config/binary_local-packageslists/*
 	do
 		# Generate package list
-		Expand_packagelist "$(basename ${PACKAGESLIST})" "config/binary_local-packageslists" "${LH_BASE:-/usr/share/live-helper/lists}/lists" > chroot/root/"$(basename ${PACKAGESLIST})"
-
+		Expand_packagelist "${PACKAGESLIST}" "config/binary_local-packageslists" > chroot/root/"$(basename ${PACKAGESLIST})"
 
 		# Downloading additional packages
 		Chroot "xargs --arg-file=/root/$(basename ${PACKAGESLIST}) apt-get ${APT_OPTIONS} -o Dir::Cache=/binary.deb --download-only install"
diff --git a/helpers/lh_chroot_local-packageslists b/helpers/lh_chroot_local-packageslists
index 8a1bef0..f5fe3bb 100755
--- a/helpers/lh_chroot_local-packageslists
+++ b/helpers/lh_chroot_local-packageslists
@@ -47,11 +47,8 @@ then
 	for PACKAGES_LIST in config/chroot_local-packageslists/*
 	do
 		# Generate package list
-		Expand_packagelist \
-			"$(basename ${PACKAGES_LIST})" \
-			"config/chroot_local-packageslists" \
-			"${LH_BASE:-/usr/share/live-helper/lists}/lists" \
-				>> chroot/root/chroot_packages
+		Expand_packagelist "${PACKAGES_LIST}" "config/chroot_local-packageslists" \
+			>> chroot/root/chroot_packages
 	done
 
 	# Creating stage file
diff --git a/helpers/lh_chroot_packageslists b/helpers/lh_chroot_packageslists
index 05d742d..9569550 100755
--- a/helpers/lh_chroot_packageslists
+++ b/helpers/lh_chroot_packageslists
@@ -47,17 +47,9 @@ then
 
 	for LIST in ${LH_PACKAGES_LISTS}
 	do
-		if [ -f ${LH_BASE:-/usr/share/live-helper}/lists/"${LIST}" ]
-		then
-			# Generating package list
-			Expand_packagelist \
-				"${LIST}" \
-				"config/chroot_local-packageslists" \
-				"${LH_BASE:-/usr/share/live-helper}/lists" \
-					>> chroot/root/chroot_packages
-		else
-			Echo_warning "skipping installation of unknown packages list '${LIST}'."
-		fi
+		# Generating package list
+		Expand_packagelist "${LIST}" "config/chroot_local-packageslists" \
+			>> chroot/root/chroot_packages
 	done
 
 	# Creating stage file

-- 
debian-live/live-helper



More information about the debian-live-changes mailing list