Skip to content

Commit

Permalink
wrap ALL_DEPS somewhat sanely
Browse files Browse the repository at this point in the history
otherwise we'll produce lines with tens of thousands columns when
dealing with QMAKE_BUNDLE_DATA.

Change-Id: Ia2a70f25e4ee1d3fe976027a7c46d234809a3f70
Reviewed-by: Morten Johan Sørvig <[email protected]>
  • Loading branch information
ossilator committed Oct 1, 2014
1 parent f72dcff commit 7f18406
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qmake/generators/unix/unixmake2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 7f18406

Please sign in to comment.