svn commit: r242188 - head/usr.sbin/bsdinstall/scripts
Devin Teske
dteske at FreeBSD.org
Sat Oct 27 19:56:58 UTC 2012
Author: dteske
Date: Sat Oct 27 19:56:57 2012
New Revision: 242188
URL: http://svn.freebsd.org/changeset/base/242188
Log:
Fix bug introduced by r241902 (MANIFEST uses TAB delimiter).
PR: bin/173140
Approved by: adrian (co-mentor)
Modified:
head/usr.sbin/bsdinstall/scripts/auto
Modified: head/usr.sbin/bsdinstall/scripts/auto
==============================================================================
--- head/usr.sbin/bsdinstall/scripts/auto Sat Oct 27 19:49:15 2012 (r242187)
+++ head/usr.sbin/bsdinstall/scripts/auto Sat Oct 27 19:56:57 2012 (r242188)
@@ -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 \
More information about the svn-src-head
mailing list