[PC-BSD Commits] r17763 - pcbsd/current/src-qt4/pc-installgui
svn at pcbsd.org
svn at pcbsd.org
Mon Jul 16 08:19:53 PDT 2012
Author: kris
Date: 2012-07-16 15:19:52 +0000 (Mon, 16 Jul 2012)
New Revision: 17763
Modified:
pcbsd/current/src-qt4/pc-installgui/installer.cpp
Log:
Fix a bug loading packages on TrueOS install
Modified: pcbsd/current/src-qt4/pc-installgui/installer.cpp
===================================================================
--- pcbsd/current/src-qt4/pc-installgui/installer.cpp 2012-07-16 15:10:03 UTC (rev 17762)
+++ pcbsd/current/src-qt4/pc-installgui/installer.cpp 2012-07-16 15:19:52 UTC (rev 17763)
@@ -1514,12 +1514,8 @@
QString cfgLine;
cfgLine="runExtCommand=sh /root/insMetaPkgs.sh base-system";
- for ( int i=0; i<selectedPkgs.count(); ++i) {
- if ( i == 0 && (wheelCurItem == wPCSERVER || wheelCurItem == 12) )
- cfgLine+= selectedPkgs.at(i);
- else
- cfgLine+="," + selectedPkgs.at(i);
- }
+ for ( int i=0; i<selectedPkgs.count(); ++i)
+ cfgLine+="," + selectedPkgs.at(i);
cfgLine += " CD";
More information about the Commits
mailing list