From: Joey Hess Date: Sat, 8 Aug 2009 19:36:58 +0000 (-0400) Subject: move comment closer to relevant code X-Git-Tag: 7.3.13~4 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=16b20dfd69af55f312f21a98d1344252ae179238;p=debhelper.git move comment closer to relevant code --- diff --git a/Debian/Debhelper/Buildsystem/python_distutils.pm b/Debian/Debhelper/Buildsystem/python_distutils.pm index 9cf12e1..4dc2a0d 100644 --- a/Debian/Debhelper/Buildsystem/python_distutils.pm +++ b/Debian/Debhelper/Buildsystem/python_distutils.pm @@ -115,9 +115,6 @@ sub setup_py { # the requested Python versions. # Then, run setup.py with each available python, to build # extensions for each. - # To allow backports of debhelper we don't pass - # --install-layout=deb to 'setup.py install` for those Python - # versions where the option is ignored by distutils/setuptools. my $python_default = `pyversions -d`; $python_default =~ s/^\s+//; @@ -142,6 +139,10 @@ sub setup_py { foreach my $python (@python_requested, @python_dbg) { if (-x "/usr/bin/".$python) { + # To allow backports of debhelper we don't pass + # --install-layout=deb to 'setup.py install` for + # those Python versions where the option is + # ignored by distutils/setuptools. if ( $act eq "install" and not ( ($python =~ /^python(?:-dbg)?$/ and $python_default =~ /^python2.[2345]$/)