Commit 7f184068 authored by Oswald Buddenhagen's avatar Oswald Buddenhagen
Browse files

wrap ALL_DEPS somewhat sanely


otherwise we'll produce lines with tens of thousands columns when
dealing with QMAKE_BUNDLE_DATA.

Change-Id: Ia2a70f25e4ee1d3fe976027a7c46d234809a3f70
Reviewed-by: default avatarMorten Johan Sørvig <morten.sorvig@digia.com>
No related merge requests found
Showing with 1 addition and 1 deletion
......@@ -859,7 +859,7 @@ UnixMakefileGenerator::writeMakeParts(QTextStream &t)
}
t << endl << "all: " << escapeDependencyPath(deps)
<< valGlue(escapeDependencyPaths(project->values("ALL_DEPS")), " ", " ", "")
<< valGlue(escapeDependencyPaths(project->values("ALL_DEPS")), " \\\n\t\t", " \\\n\t\t", "")
<< allDeps << endl << endl;
ProString ddir;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment