From 7e8abe1aca027ae44d012b441e868116c029374a Mon Sep 17 00:00:00 2001 From: defnax <9952056+defnax@users.noreply.github.com> Date: Tue, 5 Aug 2025 21:40:42 +0200 Subject: [PATCH] corrected sqlcipher repo --- build_scripts/Debian+Ubuntu/Linux_InstallGuide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_scripts/Debian+Ubuntu/Linux_InstallGuide.md b/build_scripts/Debian+Ubuntu/Linux_InstallGuide.md index 8b70c36c9..4703b9777 100644 --- a/build_scripts/Debian+Ubuntu/Linux_InstallGuide.md +++ b/build_scripts/Debian+Ubuntu/Linux_InstallGuide.md @@ -117,12 +117,12 @@ You need to place sqlcipher so that the hierarchy is: ```bash mkdir lib cd lib - git clone git://github.com/sqlcipher/sqlcipher.git + git clone https://github.com/sqlcipher/sqlcipher.git --depth=1 --branch v3.4.1 cd sqlcipher ./configure --enable-tempstore=yes CFLAGS="-DSQLITE_HAS_CODEC" LDFLAGS="-lcrypto" make cd .. -``` +``` ### Build infos