QNX: Fix build on Win32 when linking against sqlite libs
Previously the linker options were overquoted which resulted in a broken Makefile. Change-Id: I2a77ad07564fc75533d6e8f29b5cbe52389bcce5 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
This commit is contained in:
parent
26c33dc892
commit
83977d47c1
@ -2669,7 +2669,7 @@ void Configure::generateOutputVars()
|
||||
qmakeVars += "LIBS += " + formatPaths(qmakeLibs);
|
||||
|
||||
if (!dictionary["QT_LFLAGS_SQLITE"].isEmpty())
|
||||
qmakeVars += "QT_LFLAGS_SQLITE += " + formatPath(dictionary["QT_LFLAGS_SQLITE"]);
|
||||
qmakeVars += "QT_LFLAGS_SQLITE += " + dictionary["QT_LFLAGS_SQLITE"];
|
||||
|
||||
if (dictionary["JAVASCRIPTCORE_JIT"] == "no")
|
||||
qmakeVars += "JAVASCRIPTCORE_JIT = no";
|
||||
|
Loading…
Reference in New Issue
Block a user