r2632 - dists/trunk/live-helper/functions

matth-guest at alioth.debian.org matth-guest at alioth.debian.org
Sun Jul 29 14:31:10 UTC 2007


Author: matth-guest
Date: 2007-07-29 14:31:09 +0000 (Sun, 29 Jul 2007)
New Revision: 2632

Modified:
   dists/trunk/live-helper/functions/packages.sh
Log:
add quotes in Chroot calls


Modified: dists/trunk/live-helper/functions/packages.sh
===================================================================
--- dists/trunk/live-helper/functions/packages.sh	2007-07-29 14:23:46 UTC (rev 2631)
+++ dists/trunk/live-helper/functions/packages.sh	2007-07-29 14:31:09 UTC (rev 2632)
@@ -16,7 +16,7 @@
 
 	case "${LIVE_CHROOT_BUILD}" in
 		enabled)
-			if ! `Chroot dpkg-query -s ${PACKAGE}`
+			if ! `Chroot "dpkg-query -s ${PACKAGE}"`
 			then
 				PACKAGES="${PACKAGES} ${PACKAGE}"
 			fi
@@ -25,7 +25,7 @@
 		disabled)
 			if `which dpkg-query`
 			then
-				if ! `Chroot dpkg-query -s ${PACKAGE}`
+				if ! `Chroot "dpkg-query -s ${PACKAGE}"`
 				then
 					PACKAGES="${PACKAGES} ${PACKAGE}"
 				fi




More information about the debian-live-changes mailing list