diff options
author | Thomas Goirand <zigo@debian.org> | 2015-06-01 08:43:34 +0200 |
---|---|---|
committer | Thomas Goirand <zigo@debian.org> | 2015-06-01 08:44:40 +0200 |
commit | d92aeedcf27326270cb3dcd8b780566728a489a9 (patch) | |
tree | cc6a7711f351e05156c4acc484a80aac0c5f52a5 /debian/rules | |
parent | c8d021c5252b961aee4b777b61890189fd531e1c (diff) | |
download | factory-boy-d92aeedcf27326270cb3dcd8b780566728a489a9.tar factory-boy-d92aeedcf27326270cb3dcd8b780566728a489a9.tar.gz |
Fixed gbp.confdebian/2.4.1-4
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/debian/rules b/debian/rules index 98463d9..613adf5 100755 --- a/debian/rules +++ b/debian/rules @@ -10,11 +10,11 @@ include /usr/share/openstack-pkg-tools/pkgos.make dh $@ --buildsystem=python_distutils --with python2,python3,sphinxdoc override_dh_auto_install: - set -e && for pyvers in $(PYTHONS); do \ + set -e ; for pyvers in $(PYTHONS); do \ python$$pyvers setup.py install --install-layout=deb \ --root $(CURDIR)/debian/python-factory-boy; \ done - set -e && for pyvers in $(PYTHON3S); do \ + set -e ; for pyvers in $(PYTHON3S); do \ python$$pyvers setup.py install --install-layout=deb \ --root $(CURDIR)/debian/python3-factory-boy; \ done @@ -28,7 +28,7 @@ endif override_dh_auto_test: ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS))) - set -e && for i in $(PYTHONS) $(PYTHON3S) ; do \ + set -e ; for i in $(PYTHONS) $(PYTHON3S) ; do \ python$$i -W default setup.py test ; \ done endif |