diff options
author | Pierre Rossi <pierre.rossi@nokia.com> | 2009-12-03 23:10:04 (GMT) |
---|---|---|
committer | Pierre Rossi <pierre.rossi@nokia.com> | 2009-12-04 13:11:24 (GMT) |
commit | c9d0b0bb9d2e3745f6e2a562ac02526f78ca8ff6 (patch) | |
tree | 33735b5465cdd8fc70565cf408bac6692097e26d /qmake/generators/unix | |
parent | d7b34583926e3bd751120a4b827cd5ba6667dea3 (diff) | |
download | Qt-c9d0b0bb9d2e3745f6e2a562ac02526f78ca8ff6.zip Qt-c9d0b0bb9d2e3745f6e2a562ac02526f78ca8ff6.tar.gz Qt-c9d0b0bb9d2e3745f6e2a562ac02526f78ca8ff6.tar.bz2 |
Apparently fixes some build issues on some old unixes...
Reviewed-by: Marius Storm-Olsen
Diffstat (limited to 'qmake/generators/unix')
-rw-r--r-- | qmake/generators/unix/unixmake.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/generators/unix/unixmake.cpp b/qmake/generators/unix/unixmake.cpp index faa6415..44a461e 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") |