summaryrefslogtreecommitdiffstats
path: root/qmake
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2014-09-29 15:06:40 +0200
committerOswald Buddenhagen <oswald.buddenhagen@digia.com>2014-10-01 10:57:27 +0200
commit7f18406878764d56cbb5b681650b6911c439a280 (patch)
tree21b2be9616bb1ad31799da062a957975c3496a25 /qmake
parentf72dcff925deeacaef0b5252ac52097ddedd11c1 (diff)
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: Morten Johan Sørvig <morten.sorvig@digia.com>
Diffstat (limited to 'qmake')
-rw-r--r--qmake/generators/unix/unixmake2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/generators/unix/unixmake2.cpp b/qmake/generators/unix/unixmake2.cpp
index 8bc5b00fd9..eb8161a18b 100644
--- a/qmake/generators/unix/unixmake2.cpp
+++ b/qmake/generators/unix/unixmake2.cpp
@@ -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;