From 4246ed0533cf9992f3d450ce7fbeaff27cd68cb8 Mon Sep 17 00:00:00 2001 From: Zack Weinberg Date: Mon, 18 Aug 2014 12:55:54 -0400 Subject: [PATCH] Correct SQLITE3SRCDIR setting. This is how we arrange for QtWebkit to use QtBase's bundled copy of sqlite; without it, QtWebkit will attempt to use a system-provided library instead, and if headers are unavailable, the build will fail. Part of issue #12467. --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index f24778fb8a..3f9906037c 100755 --- a/build.sh +++ b/build.sh @@ -125,7 +125,7 @@ echo if [[ "$QTCORE" == "bundled" ]]; then export QMAKE=$PWD/src/qt/qtbase/bin/qmake - export SQLITE3SRCDIR=$PWD/src/qt/qtbase/3rdparty/sqlite/ + export SQLITE3SRCDIR=$PWD/src/qt/qtbase/src/3rdparty/sqlite/ ( cd src/qt && ./preconfig.sh $QT_CFG ) echo