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

View File

@ -53,7 +53,7 @@ bsdinstall hostname || error
export DISTRIBUTIONS="base.txz kernel.txz" export DISTRIBUTIONS="base.txz kernel.txz"
if [ -f $BSDINSTALL_DISTDIR/MANIFEST ]; then 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 exec 3>&1
EXTRA_DISTS=$( eval dialog \ EXTRA_DISTS=$( eval dialog \