From kdevelop-bugs Tue Jan 30 16:23:01 2007 From: Andreas Pakulat Date: Tue, 30 Jan 2007 16:23:01 +0000 To: kdevelop-bugs Subject: [Bug 140904] Automake project, manager, Message-Id: <20070130162301.27252.qmail () ktown ! kde ! org> X-MARC-Message: https://marc.info/?l=kdevelop-bugs&m=118306963712101 ------- 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=140904 apaku gmx de changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From apaku gmx de 2007-01-30 17:23 ------- SVN commit 628598 by apaku: Add -I for outside include dirs if it doesn't exist yet BUG:140904 M +4 -0 subprojectoptionsdlg.cpp --- branches/kdevelop/3.4/buildtools/autotools/subprojectoptionsdlg.cpp #628597:628598 @ -301,7 +301,11 @ { QString dir = KFileDialog::getExistingDirectory(); if (!dir.isEmpty()) + { + if( !dir.startsWith( "-I" ) ) + dir = "-I"+dir; new QListViewItem(outsideinc_listview, dir); + } }