diff options
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/debian/rules b/debian/rules index a09475c0..b1301dde 100755 --- a/debian/rules +++ b/debian/rules @@ -4,12 +4,14 @@ dh $@ --with python2 override_dh_auto_clean: - cd soledad && python setup.py clean -a - cd soledad_server && python setup.py clean -a + cd client && python setup.py clean -a + cd common && python setup.py clean -a + cd server && python setup.py clean -a override_dh_auto_install: - cd soledad && python setup.py install --root=../debian/soledad-common - cd soledad_server && python setup.py install --root=../debian/soledad-server + cd common && python setup.py install --root=../debian/soledad-common + cd server && python setup.py install --root=../debian/soledad-server + cd client && python setup.py install --root=../debian/soledad-client |