summaryrefslogtreecommitdiffstats
path: root/qmake/generators/makefile.cpp
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2015-04-13 17:12:28 +0200
committerOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2015-04-21 12:06:03 +0000
commitb5322502372893a9270e9981e7d4223da96ccfc2 (patch)
tree476609ece6f224703b6cdd516ca2a78a2d264c05 /qmake/generators/makefile.cpp
parent8e380c2021aa40796e7924c70d9906cfbd6ab677 (diff)
remove pointless argument to build_args()
it's always empty. Change-Id: Icd97b5ac5b77c119174fdce2671f69c88c607428 Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
Diffstat (limited to 'qmake/generators/makefile.cpp')
-rw-r--r--qmake/generators/makefile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qmake/generators/makefile.cpp b/qmake/generators/makefile.cpp
index f2decd71a5..e6eb6e27cd 100644
--- a/qmake/generators/makefile.cpp
+++ b/qmake/generators/makefile.cpp
@@ -2243,7 +2243,7 @@ QString MakefileGenerator::buildArgs()
//could get stored argv, but then it would have more options than are
//probably necesary this will try to guess the bare minimum..
-QString MakefileGenerator::build_args(const QString &outdir)
+QString MakefileGenerator::build_args()
{
QString ret = "$(QMAKE)";
@@ -2256,7 +2256,7 @@ QString MakefileGenerator::build_args(const QString &outdir)
ret += " -o " + escapeFilePath(ofile);
//inputs
- ret += " " + escapeFilePath(fileFixify(project->projectFile(), outdir));
+ ret += " " + escapeFilePath(fileFixify(project->projectFile()));
return ret;
}