[PC-BSD Commits] r21347 - pcbsd/current/src-qt4/pc-installgui
svn at pcbsd.org
svn at pcbsd.org
Mon Feb 4 09:51:05 PST 2013
Author: kris
Date: 2013-02-04 17:51:05 +0000 (Mon, 04 Feb 2013)
New Revision: 21347
Modified:
pcbsd/current/src-qt4/pc-installgui/installer.cpp
Log:
Make sure we add pcbsd-base or trueos-base depending upon whats being installed
Modified: pcbsd/current/src-qt4/pc-installgui/installer.cpp
===================================================================
--- pcbsd/current/src-qt4/pc-installgui/installer.cpp 2013-02-04 17:43:09 UTC (rev 21346)
+++ pcbsd/current/src-qt4/pc-installgui/installer.cpp 2013-02-04 17:51:05 UTC (rev 21347)
@@ -1537,10 +1537,13 @@
QList<QStringList> curList;
- if ( wheelCurItem != wPCSERVER && wheelCurItem != 11 && wheelCurItem != 12)
+ if ( wheelCurItem != wPCSERVER && wheelCurItem != 11 && wheelCurItem != 12) {
curList = listDeskPkgs;
- else
+ pkg-list << "pcbsd-base";
+ } else {
curList = listServerPkgs;
+ pkg-list << "trueos-base";
+ }
// Loop though list of pkgs, see what to install
for ( int d=0; d < curList.count(); ++d) {
More information about the Commits
mailing list