diff options
author | Zeno Albisser <zeno.albisser@nokia.com> | 2010-03-15 11:00:02 (GMT) |
---|---|---|
committer | Zeno Albisser <zeno.albisser@nokia.com> | 2010-03-17 16:17:27 (GMT) |
commit | d6ab68fbd22b2d057b0e32e1bfc73a5e7dc9327d (patch) | |
tree | aad2553d0da8c8b02ee72b5e8a423dba86a9444d /src/tools/bootstrap/bootstrap.pri | |
parent | 3d6f1ebf1dbdefc443aa4f8e7d18755383794156 (diff) | |
download | Qt-d6ab68fbd22b2d057b0e32e1bfc73a5e7dc9327d.zip Qt-d6ab68fbd22b2d057b0e32e1bfc73a5e7dc9327d.tar.gz Qt-d6ab68fbd22b2d057b0e32e1bfc73a5e7dc9327d.tar.bz2 |
Force qt-zlib to be used for host system when cross compiling.
There is no possibility to define which zlib should be used for the
bootstrapped tools when cross compiling.
Therefor we will force qt-zlib to be used for bootstrapped tools.
Reviewed-by: Marius Storm-Olsen
Task-number: QTBUG-8678
Diffstat (limited to 'src/tools/bootstrap/bootstrap.pri')
-rw-r--r-- | src/tools/bootstrap/bootstrap.pri | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/bootstrap/bootstrap.pri b/src/tools/bootstrap/bootstrap.pri index b3ee948..6442526 100644 --- a/src/tools/bootstrap/bootstrap.pri +++ b/src/tools/bootstrap/bootstrap.pri @@ -51,7 +51,7 @@ hpux-acc*|hpuxi-acc* { } LIBS += -lbootstrap } -!contains(QT_CONFIG, zlib):!contains(QT_CONFIG, no-zlib) { +!contains(QT_CONFIG, zlib):!contains(QT_CONFIG, no-zlib):!cross_compile { unix:LIBS += -lz # win32:LIBS += libz.lib } |