Summary: | Ignore-List in buildtools/qmake/filebuffer.cpp messes up parsing of .pro files if $( is present in variable values | ||
---|---|---|---|
Product: | [Applications] kdevelop | Reporter: | matze |
Component: | general | Assignee: | KDevelop Developers <kdevelop-devel> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version First Reported In: | git master | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
matze
2003-10-22 11:43:51 UTC
Subject: kdevelop/buildtools/qmake CVS commit by koepfle: Fix parsing of pro-files with env-variables $(...) As far as I can see this has no side effects, since env-variables aren't evaluated by the qmake manager at the moment anyway. thanks to matze@stud.fbi.fh-darmstadt.de for the patch CCMAIL: 66377-done@bugs.kde.org M +1 -1 filebuffer.cpp 1.33 --- kdevelop/buildtools/qmake/filebuffer.cpp #1.32:1.33 @@ -760,5 +760,5 @@ void FileBuffer::filterOutIgnoreValues(Q QStringList qmakeFunctions = QStringList::split(',',"join(,member(,find(,contains(,count(,error(,exists(," - "include(,isEmpty(,system(,message(,infile(,$("); + "include(,isEmpty(,system(,message(,infile("); int len=0; |