diff options
author | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2011-02-28 17:29:59 (GMT) |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2011-03-01 17:52:05 (GMT) |
commit | 183ac025fec424743ba007eeb96850cd733aa99c (patch) | |
tree | fa8ad925fda0b39f7a1e6b13d0b0e73de84f5c87 /qmake | |
parent | 6b735fab1543cc9bc9cc25171b6c85d0f871587f (diff) | |
download | Qt-183ac025fec424743ba007eeb96850cd733aa99c.zip Qt-183ac025fec424743ba007eeb96850cd733aa99c.tar.gz Qt-183ac025fec424743ba007eeb96850cd733aa99c.tar.bz2 |
don't add extraneous empty command lines
Reviewed-by: mariusSO
Diffstat (limited to 'qmake')
-rw-r--r-- | qmake/generators/unix/unixmake2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/generators/unix/unixmake2.cpp b/qmake/generators/unix/unixmake2.cpp index d7145b4..5ea13f4 100644 --- a/qmake/generators/unix/unixmake2.cpp +++ b/qmake/generators/unix/unixmake2.cpp @@ -536,7 +536,7 @@ UnixMakefileGenerator::writeMakeParts(QTextStream &t) t << "\n\t" << "-$(MOVE) $(TARGET) " << destdir; if(!project->isEmpty("QMAKE_POST_LINK")) - t << "\n\t" << var("QMAKE_POST_LINK") << "\n\t"; + t << "\n\t" << var("QMAKE_POST_LINK"); t << endl << endl; } else if(!project->isEmpty("QMAKE_BUNDLE")) { t << "\n\t" |