diff options
author | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2011-03-29 08:24:15 (GMT) |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2011-04-12 10:00:28 (GMT) |
commit | 2fe0805d4eb821d2aa11ea868ebb3ff32a108475 (patch) | |
tree | 7af3e70f2b8476a4eef722ffdd54eb98108f4342 /qmake/generators | |
parent | af93be4d81d1e50b0c9f015f8432033cc737b22d (diff) | |
download | Qt-2fe0805d4eb821d2aa11ea868ebb3ff32a108475.zip Qt-2fe0805d4eb821d2aa11ea868ebb3ff32a108475.tar.gz Qt-2fe0805d4eb821d2aa11ea868ebb3ff32a108475.tar.bz2 |
simplify: fileFixify for all same paths is always "."
this must have been the most arcane way to generate a single dot ever
Reviewed-by: mariusSO
Diffstat (limited to 'qmake/generators')
-rw-r--r-- | qmake/generators/makefile.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/qmake/generators/makefile.cpp b/qmake/generators/makefile.cpp index 7033a04..1bfbdba 100644 --- a/qmake/generators/makefile.cpp +++ b/qmake/generators/makefile.cpp @@ -783,9 +783,7 @@ MakefileGenerator::init() { //get the output_dir into the pwd if(Option::output_dir != qmake_getpwd()) - project->values("INCLUDEPATH").append(fileFixify(Option::output_dir, - Option::output_dir, - Option::output_dir)); + project->values("INCLUDEPATH").append("."); } //fix up the target deps |