Slightly cleaner handling of mkisofs_opts and _dirs

This commit is contained in:
Steve McIntyre 2006-12-08 12:17:24 +00:00
parent e9be1e7c20
commit 7c746a97e9
1 changed files with 10 additions and 2 deletions

View File

@ -177,8 +177,16 @@ do
cd $BDIR
echo " Placing packages into image $DISKNUM"
MKISOFS_OPTS=`cat $BDIR/$DISKNUM.mkisofs_opts` || true
MKISOFS_DIRS=`cat $BDIR/$DISKNUM.mkisofs_dirs` || true
if [ -e $BDIR/$DISKNUM.mkisofs_opts ] ; then
MKISOFS_OPTS=`cat $BDIR/$DISKNUM.mkisofs_opts`
else
unset MKISOFS_OPTS
fi
if [ -e $BDIR/$DISKNUM.mkisofs_dirs ] ; then
MKISOFS_DIRS=`cat $BDIR/$DISKNUM.mkisofs_dirs`
else
unset MKISOFS_DIRS
fi
SIZE_CHECK="$MKISOFS_CHECK $MKISOFS_OPTS $MKISOFS_DIRS"
SIZE=`$SIZE_CHECK $CDDIR`
echo "CD #$DISKNUM: size is $SIZE before starting to add packages" >> $LOG