Version: 3.0.0a5 (using KDE 3.1.2) Compiler: gcc version 3.3 (Mandrake Linux 9.2 3.3-2mdk) OS: Linux (i686) release 2.4.21-0.13mdk r++ should create the path ~/.kde/share/apps/kdevcppsupport/pcs/ if it does not exist.
Subject: kdevelop/parts/cppsupport CVS commit by dymo: create pcs path if it isn't exists CCMAIL: 60988-done@bugs.kde.org M +5 -0 main.cpp 1.18 --- kdevelop/parts/cppsupport/main.cpp #1.17:1.18 @@ -209,4 +209,9 @@ int main( int argc, char* argv[] ) QString datadir = stddir.localkdedir() + "/" + KStandardDirs::kde_default( "data" ); + if (! KStandardDirs::makeDir(datadir + "/kdevcppsupport/pcs/")){ + std::cerr << "*error* " << "could not create " << datadir + "/kdevcppsupport/pcs/" << std::endl << std::endl; + return -1; + } + if( !QFile::exists(datadir + "/kdevcppsupport/pcs/") ){