~ubuntu-branches/ubuntu/lucid/pyopenssl/lucid-updates

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-02-21 17:56:00 UTC
  • Revision ID: james.westby@ubuntu.com-20090221175600-9lzri2g63bkhwhk9
Tags: 0.7-2ubuntu1
Call setup.py --install with --install-layout=deb.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
        set -e; \
47
47
        for py in $(PYVERS); do \
48
48
            echo "installing for $$py ..."; \
49
 
            $$py setup.py install --root=$(CURDIR)/debian/python-openssl; \
 
49
            $$py setup.py install --root=$(CURDIR)/debian/python-openssl --install-layout=deb; \
50
50
            echo "installing for $$py-dbg ..."; \
51
 
            $$py-dbg setup.py install --root=$(CURDIR)/debian/python-openssl-dbg; \
 
51
            $$py-dbg setup.py install --root=$(CURDIR)/debian/python-openssl-dbg --install-layout=deb; \
52
52
        done
53
53
        find debian/python-openssl-dbg ! -type d ! -name '*_d.so' | xargs rm -f
54
54
        find debian/python-openssl-dbg -depth -empty -exec rmdir {} \;