diff --git a/INSTALL.md b/INSTALL.md index aa2b89fb7..771354100 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -16,7 +16,7 @@ FreedomBox [Manual](https://wiki.debian.org/FreedomBox/Manual/)'s ``` ``` - $ sudo apt install -y $(./run --list-dependencies) + $ sudo apt install -y $(./run --develop --list-dependencies) ``` Install additional dependencies by picking the list from debian/control file diff --git a/Vagrantfile b/Vagrantfile index bda895ea4..a6b41488d 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -32,7 +32,7 @@ Vagrant.configure(2) do |config| apt-get update # In case new dependencies conflict with old dependencies apt-mark hold freedombox - DEBIAN_FRONTEND=noninteractive apt-get install --no-upgrade -y $(plinth --list-dependencies) + DEBIAN_FRONTEND=noninteractive apt-get install --no-upgrade -y $(sudo -u plinth ./run --develop --list-dependencies) apt-mark unhold freedombox # Install ncurses-term DEBIAN_FRONTEND=noninteractive apt-get install -y ncurses-term diff --git a/debian/rules b/debian/rules index b0a3a6f76..924d3b366 100755 --- a/debian/rules +++ b/debian/rules @@ -8,7 +8,7 @@ export PYBUILD_DESTDIR=debian/tmp override_dh_auto_install-indep: dh_auto_install - ./run --list-dependencies 2> /dev/null | sort | tr '\n' ', ' | \ + ./run --develop --list-dependencies | sort | tr '\n' ', ' | \ sed -e 's/^/freedombox:Depends=/' >> debian/freedombox.substvars override_dh_auto_test: