Fix bug introduced by r241902 (MANIFEST uses TAB delimiter).

PR:		bin/173140
Approved by:	adrian (co-mentor)
This commit is contained in:
Devin Teske 2012-10-27 19:56:57 +00:00
parent c58c2dc7d5
commit c0d1bdc0b4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=242188

View file

@ -53,7 +53,7 @@ bsdinstall hostname || error
export DISTRIBUTIONS="base.txz kernel.txz"
if [ -f $BSDINSTALL_DISTDIR/MANIFEST ]; then
DISTMENU=`awk '!/^(kernel|base)/{print $4,$5,$6}' $BSDINSTALL_DISTDIR/MANIFEST`
DISTMENU=`awk -F'\t' '!/^(kernel|base)/{print $4,$5,$6}' $BSDINSTALL_DISTDIR/MANIFEST`
exec 3>&1
EXTRA_DISTS=$( eval dialog \