diff options
author | axis <qt-info@nokia.com> | 2010-12-23 15:24:57 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2011-01-28 12:24:52 (GMT) |
commit | 37a57d9ac8cbdedbdb9d44d32a0ae68333cf1549 (patch) | |
tree | 1cb025e319aca4a049d9669cd6a011d68e985027 /src/plugins/sqldrivers | |
parent | e3092695a2768643a335834cceb83e120ba94083 (diff) | |
download | Qt-37a57d9ac8cbdedbdb9d44d32a0ae68333cf1549.zip Qt-37a57d9ac8cbdedbdb9d44d32a0ae68333cf1549.tar.gz Qt-37a57d9ac8cbdedbdb9d44d32a0ae68333cf1549.tar.bz2 |
Fixed a build library deployment issue in sqlite.
Make did not understand that sqlite3.dso, which the link relies on,
is the same as $$OBJECTS_DIR/sqlite3.dso, which is extracted by the
profile.
RevBy: Trust me
Diffstat (limited to 'src/plugins/sqldrivers')
-rw-r--r-- | src/plugins/sqldrivers/sqlite_symbian/sqlite_symbian.pri | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/plugins/sqldrivers/sqlite_symbian/sqlite_symbian.pri b/src/plugins/sqldrivers/sqlite_symbian/sqlite_symbian.pri index ebeccc9..b7a87f3 100644 --- a/src/plugins/sqldrivers/sqlite_symbian/sqlite_symbian.pri +++ b/src/plugins/sqldrivers/sqlite_symbian/sqlite_symbian.pri @@ -34,6 +34,12 @@ silent:symbian_sqlite3_dso.commands = @echo unzipping $@ && $$symbian_sqlite3_dso.commands QMAKE_EXTRA_COMPILERS += symbian_sqlite3_dso + # Workaround for the fact that make doesn't understand that sqlite3.dso + # is the same as $OBJECTS_DIR/sqlite3.dso + symbian_sqlite3_dso_standalone.target = sqlite3.dso + symbian_sqlite3_dso_standalone.depends = $$symbian_sqlite3_dso.output + QMAKE_EXTRA_TARGETS += symbian_sqlite3_dso_standalone + symbian_sqlite3_ver_dso.input = symbian_sqlite3_zip_file symbian_sqlite3_ver_dso.output = sqlite3{00060003}.dso !isEmpty(OBJECTS_DIR):symbian_sqlite3_ver_dso.output = $$OBJECTS_DIR/$$symbian_sqlite3_ver_dso.output |