~ubuntu-branches/ubuntu/oneiric/bzrtools/oneiric

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Package Import Robot
  • Author(s): Jelmer Vernooij
  • Date: 2011-05-09 17:21:35 UTC
  • mfrom: (0.1.717 oneiric)
  • Revision ID: package-import@ubuntu.com-20110509172135-xau2m5zik7dv9qvz
* Remove build dependency on python-subunit, which is not in main.
 + Disable parallel builds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
%:
4
4
        dh --with python2 --buildsystem=python_distutils $*
5
5
 
6
 
ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
7
 
CONCURRENCY = BZR_CONCURRENCY=$(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
8
 
endif
9
 
 
10
6
ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
11
7
override_dh_auto_test:
12
 
        $(CONCURRENCY) BZR_PLUGINS_AT=bzrtools@$(CURDIR) /usr/bin/bzr selftest \
13
 
            --parallel=fork -v -s bp.bzrtools
 
8
        BZR_PLUGINS_AT=bzrtools@$(CURDIR) /usr/bin/bzr selftest \
 
9
            -v -s bp.bzrtools
14
10
endif