summaryrefslogtreecommitdiffstats
path: root/qmake
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2011-02-28 17:29:59 (GMT)
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2011-03-01 17:52:05 (GMT)
commit183ac025fec424743ba007eeb96850cd733aa99c (patch)
treefa8ad925fda0b39f7a1e6b13d0b0e73de84f5c87 /qmake
parent6b735fab1543cc9bc9cc25171b6c85d0f871587f (diff)
downloadQt-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.cpp2
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"