Skip to content

Commit

Permalink
Fix up install location
Browse files Browse the repository at this point in the history
The dh_auto_install rule was placing its output in the wrong place for
some reason (and also wasn't generating a separate Python 3-based
install). This override fixes the issue, so that the pi can now produce
valid python 2 and 3 binary deb packages
  • Loading branch information
waveform80 committed Dec 18, 2013
1 parent 33f72d4 commit 9c646bc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ export DH_OPTIONS
%:
dh $@ --with python2,python3,sphinxdoc --buildsystem=python_distutils

override_dh_auto_install:
python setup.py install --root debian/python-picamera --install-layout=deb
python3 setup.py install --root debian/python3-picamera --install-layout=deb

override_dh_auto_test:
# Don't run the tests!

Expand Down

0 comments on commit 9c646bc

Please sign in to comment.