From owner-svn-src-all@FreeBSD.ORG Wed Mar 2 15:41:01 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0106B1065674; Wed, 2 Mar 2011 15:41:01 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E2C548FC14; Wed, 2 Mar 2011 15:41:00 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id p22Ff0p2019038; Wed, 2 Mar 2011 15:41:00 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id p22Ff0HB019036; Wed, 2 Mar 2011 15:41:00 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <201103021541.p22Ff0HB019036@svn.freebsd.org> From: Nathan Whitehorn Date: Wed, 2 Mar 2011 15:41:00 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r219179 - head/usr.sbin/bsdinstall/scripts X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Mar 2011 15:41:01 -0000 Author: nwhitehorn Date: Wed Mar 2 15:41:00 2011 New Revision: 219179 URL: http://svn.freebsd.org/changeset/base/219179 Log: Make installations work when no optional components are selected. Modified: head/usr.sbin/bsdinstall/scripts/auto Modified: head/usr.sbin/bsdinstall/scripts/auto ============================================================================== --- head/usr.sbin/bsdinstall/scripts/auto Wed Mar 2 14:56:58 2011 (r219178) +++ head/usr.sbin/bsdinstall/scripts/auto Wed Mar 2 15:41:00 2011 (r219179) @@ -66,7 +66,7 @@ EXTRA_DISTS=$(echo $DISTMENU | xargs dia --checklist "Choose optional system components to install:" \ 0 0 0 \ 2>&1 1>&3) -DISTRIBUTIONS="base.txz kernel.txz" +export DISTRIBUTIONS="base.txz kernel.txz" for dist in $EXTRA_DISTS; do export DISTRIBUTIONS="$DISTRIBUTIONS $dist.txz" done