summaryrefslogtreecommitdiffstats
path: root/qmake
diff options
context:
space:
mode:
Diffstat (limited to 'qmake')
-rw-r--r--qmake/generators/makefiledeps.cpp20
1 files changed, 12 insertions, 8 deletions
diff --git a/qmake/generators/makefiledeps.cpp b/qmake/generators/makefiledeps.cpp
index 535f0561cc..7cdd757052 100644
--- a/qmake/generators/makefiledeps.cpp
+++ b/qmake/generators/makefiledeps.cpp
@@ -539,8 +539,18 @@ bool QMakeSourceFileInfo::findDeps(SourceFile *file)
break;
// preprocessor directive
- if (beginning && buffer[x] == '#')
+ if (beginning && buffer[x] == '#') {
+ // Advance to start of preprocessing directive
+ while (++x < buffer_len
+ && (buffer[x] == ' ' || buffer[x] == '\t')) {} // skip
+
+ if (qmake_endOfLine(buffer[x])) {
+ ++line_count;
+ beginning = 1;
+ continue;
+ }
break;
+ }
// quoted strings
if (buffer[x] == '\'' || buffer[x] == '"') {
@@ -561,13 +571,7 @@ bool QMakeSourceFileInfo::findDeps(SourceFile *file)
if(x >= buffer_len)
break;
- //got a preprocessor symbol
- ++x;
- while(x < buffer_len) {
- if (buffer[x] != ' ' && buffer[x] != '\t')
- break;
- ++x;
- }
+ // Got a preprocessor directive
int keyword_len = 0;
const char *const keyword = buffer + x;