Adding support for executable statements as '! $command' in package lists.

This commit is contained in:
Daniel Baumann 2012-07-28 21:57:03 +02:00
parent f84a979906
commit a691caa0f2
1 changed files with 6 additions and 0 deletions

View File

@ -40,6 +40,12 @@ Expand_packagelist ()
while read _LB_LINE
do
case "${_LB_LINE}" in
\!*)
_EXEC="$(echo ${_LB_LINE} | sed -e 's|^!||')"
chroot chroot ${_EXEC}
;;
\#if\ *)
if [ ${_LB_NESTED} -eq 1 ]
then