diff options
author | Joey Hess <joey@kitenet.net> | 2010-08-07 11:51:39 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-08-07 11:51:39 -0400 |
commit | 1f012ae1f98220de04be307beeb74eac80ab451c (patch) | |
tree | a0d4d8cc6b7fc8eefa5256da9086f85a6684e323 /Debian | |
parent | f35b15c9252dda49642d1f96f5c3d5587cfcff14 (diff) | |
download | debhelper-1f012ae1f98220de04be307beeb74eac80ab451c.tar.gz |
python_distutils: Pass --force to setup.py build, to ensure that when python-dbg is run it does not win and result in scripts having it in the shebang line. Closes: #589759
(cherry picked from commit 865e6266a5eaae81004bf530bc23da1c3fdc10b1)
Conflicts:
debian/changelog
Diffstat (limited to 'Debian')
-rw-r--r-- | Debian/Debhelper/Buildsystem/python_distutils.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Debian/Debhelper/Buildsystem/python_distutils.pm b/Debian/Debhelper/Buildsystem/python_distutils.pm index 70307b0f..5115a8ae 100644 --- a/Debian/Debhelper/Buildsystem/python_distutils.pm +++ b/Debian/Debhelper/Buildsystem/python_distutils.pm @@ -163,7 +163,9 @@ sub setup_py { sub build { my $this=shift; - $this->setup_py("build", @_); + $this->setup_py("build", + "--force", + @_); } sub install { |