summaryrefslogtreecommitdiffstats
path: root/qmake
diff options
context:
space:
mode:
authorPierre Rossi <pierre.rossi@nokia.com>2009-12-04 00:10:04 +0100
committerPierre Rossi <pierre.rossi@nokia.com>2009-12-04 14:11:24 +0100
commitc9d0b0bb9d2e3745f6e2a562ac02526f78ca8ff6 (patch)
tree33735b5465cdd8fc70565cf408bac6692097e26d /qmake
parentd7b34583926e3bd751120a4b827cd5ba6667dea3 (diff)
Apparently fixes some build issues on some old unixes...
Reviewed-by: Marius Storm-Olsen
Diffstat (limited to 'qmake')
-rw-r--r--qmake/generators/unix/unixmake.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/generators/unix/unixmake.cpp b/qmake/generators/unix/unixmake.cpp
index faa641514e..44a461e3bf 100644
--- a/qmake/generators/unix/unixmake.cpp
+++ b/qmake/generators/unix/unixmake.cpp
@@ -88,7 +88,7 @@ UnixMakefileGenerator::init()
if(project->isEmpty("QMAKE_LIBTOOL"))
project->values("QMAKE_LIBTOOL").append("libtool --silent");
if(project->isEmpty("QMAKE_SYMBOLIC_LINK"))
- project->values("QMAKE_SYMBOLIC_LINK").append("ln -sf");
+ project->values("QMAKE_SYMBOLIC_LINK").append("ln -f -s");
/* this should probably not be here, but I'm using it to wrap the .t files */
if(project->first("TEMPLATE") == "app")