~ubuntu-branches/ubuntu/trusty/py3dns/trusty

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2011-08-12 15:40:23 UTC
  • mfrom: (1.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20110812154023-3bpyt01o3io6dxbo
Tags: 3.0.1-1
* New upstream release
  - Update debian/copyright
* Protect for loops in debian/rules with set -e
* Bump standards version to 3.9.2 without further change

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
override_dh_auto_build:
7
7
override_dh_auto_install:
8
 
        for pyvers in $(shell py3versions -sv); do \
9
 
            python$$pyvers setup.py install --no-compile -O0 --install-layout=deb \
 
8
        set -e && for pyvers in $(shell py3versions -sv); do \
 
9
            python$$pyvers setup.py install --no-compile --install-layout=deb \
10
10
            --root $(CURDIR)/debian/python3-dns; \
11
11
        done
12
12
        find $(CURDIR)/debian/python3-dns -name win32dns.py | xargs rm -f