diff --git a/INSTALL.md b/INSTALL.md index 4bb117a9e..db7a3e392 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -499,7 +499,7 @@ Provided that you have all required dependencies installed, you can simply run: git clone https://github.com/toktok/c-toxcore.git toxcore cd toxcore git checkout v0.2.10 -cmake . +cmake . -DBOOTSTRAP_DAEMON=OFF make -j$(nproc) sudo make install diff --git a/bootstrap.sh b/bootstrap.sh index b601d6b6d..784c302f0 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -114,11 +114,11 @@ install_toxcore() { # compile and install if [[ $SYSTEM_WIDE = "false" ]] then - cmake . -DCMAKE_INSTALL_PREFIX=${BASE_DIR} + cmake . -DCMAKE_INSTALL_PREFIX=${BASE_DIR} -DBOOTSTRAP_DAEMON=OFF make -j $(nproc) make install else - cmake . + cmake . -DBOOTSTRAP_DAEMON=OFF make -j $(nproc) sudo make install sudo ldconfig diff --git a/flatpak/io.github.qtox.qTox.json b/flatpak/io.github.qtox.qTox.json index fdcb71a82..ecf3e0ce5 100644 --- a/flatpak/io.github.qtox.qTox.json +++ b/flatpak/io.github.qtox.qTox.json @@ -145,6 +145,7 @@ { "name": "c-toxcore", "buildsystem": "cmake-ninja", + "config-opts": ["-DBOOTSTRAP_DAEMON=OFF"], "sources": [ { "type": "git",