[Bug 61969] incorrect handling of libs in nested subdirs by qmake manager

Alexander Dymo cloudtemple at mksat.net
Fri Aug 1 21:00:07 UTC 2003


------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
     
http://bugs.kde.org/show_bug.cgi?id=61969     
cloudtemple at mksat.net changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED



------- Additional Comments From cloudtemple at mksat.net  2003-08-01 20:59 -------
Subject: kdevelop/parts/trollproject

CVS commit by dymo: 

applied patch from Andreas Koepfle <koepfle at ti.uni-mannheim.de> - fix dependencies and libraries handling for project files
CCMAIL: 61969-done at bugs.kde.org


  M +4 -4      trollprojectwidget.cpp   1.113


--- kdevelop/parts/trollproject/trollprojectwidget.cpp  #1.112:1.113
@@ -122,5 +122,5 @@ QString SubprojectItem::getSharedLibAddO
     if(configuration.m_destdir!="")
     {
-      tmpPath=downDirs+this->subdir+"/"+configuration.m_destdir;
+      tmpPath=downDirs+this->getRelativPath()+"/"+configuration.m_destdir;
     }else{
       tmpPath=downDirs+this->getRelativPath()+"/";
@@ -147,5 +147,5 @@ QString SubprojectItem::getApplicationOb
   if(configuration.m_destdir!="")
   {
-    tmpPath=downDirs+this->subdir+"/"+configuration.m_destdir;
+    tmpPath=downDirs+this->getRelativPath()+"/"+configuration.m_destdir;
   }else{
     tmpPath=downDirs+this->getRelativPath()+"/";
@@ -174,5 +174,5 @@ QString SubprojectItem::getLibAddObject(
     if(configuration.m_destdir!="")
     {
-      tmpPath=downDirs+this->subdir+"/"+configuration.m_destdir;
+      tmpPath=downDirs+this->getRelativPath()+"/"+configuration.m_destdir;
     }else{
       tmpPath=downDirs+this->getRelativPath()+"/";
@@ -204,5 +204,5 @@ QString SubprojectItem::getLibAddPath(QS
     if(configuration.m_destdir!="")
     {
-      tmpPath=downDirs+this->subdir+"/"+configuration.m_destdir;
+      tmpPath=downDirs+this->getRelativPath()+"/"+configuration.m_destdir;
     }else{
       tmpPath=downDirs+this->getRelativPath()+"/";




More information about the KDevelop-devel mailing list