summaryrefslogtreecommitdiff
authortille <tille>2002-07-20 12:09:24 (UTC)
committer tille <tille>2002-07-20 12:09:24 (UTC)
commit8c335cfdfffede8b7a864566ec4d9507a2978684 (patch) (side-by-side diff)
tree6d346457a20b32597bf4fc54c7f3cca8f49ea060
parentce7ca2ca68be48bee2661fcfeedb06faccd51408 (diff)
downloadopie-8c335cfdfffede8b7a864566ec4d9507a2978684.zip
opie-8c335cfdfffede8b7a864566ec4d9507a2978684.tar.gz
opie-8c335cfdfffede8b7a864566ec4d9507a2978684.tar.bz2
missing space
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/unsupported/oipkg/pmipkg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/unsupported/oipkg/pmipkg.cpp b/noncore/unsupported/oipkg/pmipkg.cpp
index a7deb8f..11c0f97 100644
--- a/noncore/unsupported/oipkg/pmipkg.cpp
+++ b/noncore/unsupported/oipkg/pmipkg.cpp
@@ -24,49 +24,49 @@
#include <qstring.h>
#include <qcheckbox.h>
#include <qtextstream.h>
#include <qtextview.h>
#include <qmessagebox.h>
#include <qprogressbar.h>
#include <qpushbutton.h>
#include <qlayout.h>
#include <stdlib.h>
#include <unistd.h>
#include "mainwindow.h"
PmIpkg::PmIpkg( PackageManagerSettings* s, QWidget* p, const char * name, WFlags f )
: QObject ( p )
{
settings = s;
runwindow = new RunWindow( p, name, true, f );
Config cfg( "oipkg", Config::User );
cfg.setGroup( "ipkg" );
- ipkg_cmd = cfg.readEntry( "cmd", "ipkg" );
+ ipkg_cmd = cfg.readEntry( "cmd", "ipkg" )+" ";
}
PmIpkg::~PmIpkg()
{
}
bool PmIpkg::runIpkg(const QString& args, const QString& dest )
{
bool ret=false;
QDir::setCurrent("/tmp");
QString cmd = ipkg_cmd;
pvDebug( 3,"PmIpkg::runIpkg got dest="+dest);
if (!args.contains("update"))
{
if ( dest == "" )
cmd += " -dest "+settings->getDestinationName();
else
cmd += " -dest "+ dest;
cmd += " -force-defaults ";
if ( installDialog && installDialog->_force_depends )
{
if (installDialog->_force_depends->isChecked())