~dandrader/unity8/multiInstanceApp

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Dimitri John Ledkov
  • Date: 2014-02-22 00:12:49 UTC
  • mfrom: (519.2.7 py3_update)
  • mto: This revision was merged to the branch mainline in revision 736.
  • Revision ID: dimitri.ledkov@canonical.com-20140222001249-cysi0p4hjtz2sl6s
Ship python3 autopilot modules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 
11
11
.PHONY: build
12
12
build %:
13
 
        dh $@ --parallel --fail-missing --with python2
 
13
        dh $@ --parallel --fail-missing --with python2,python3
14
14
 
15
15
override_dh_auto_clean:
16
16
        dh_auto_clean
28
28
override_dh_install:
29
29
        # install autopilot tests
30
30
        cd tests/autopilot; \
31
 
        set -ex; for python in $(shell pyversions -r); do \
 
31
        set -ex; for python in $(shell pyversions -r) $(shell py3versions -r); do \
32
32
            $$python setup.py install --root=$(CURDIR)/debian/tmp --install-layout=deb; \
33
33
        done; \
34
34
        cd $(CURDIR)