From: Joey Hess <joey@gnu.kitenet.net>
Date: Sun, 19 Jul 2009 07:37:21 +0000 (+0200)
Subject: improve comment
X-Git-Tag: 7.3.5~5^2
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=feb5e4c3cccb539003e043bec406cb32acf3770d;p=debhelper.git

improve comment
---

diff --git a/Debian/Debhelper/Buildsystem/python_distutils.pm b/Debian/Debhelper/Buildsystem/python_distutils.pm
index 502bf24..2ee2cc1 100644
--- a/Debian/Debhelper/Buildsystem/python_distutils.pm
+++ b/Debian/Debhelper/Buildsystem/python_distutils.pm
@@ -82,13 +82,15 @@ sub pre_building_step {
 sub setup_py {
 	my $this=shift;
 	my $act=shift;
-	my $python_default = `pyversions -d`;
-	$python_default =~ s/^\s+//;
-	$python_default =~ s/\s+$//;
 
 	# We need to to run setup.py with the default python first
 	# as distutils/setuptools modifies the shebang lines of scripts.
 	# This ensures that #!/usr/bin/python is used and not pythonX.Y
+	# Then, run setup.py with each available python, to build
+	# extensions for each.
+	my $python_default = `pyversions -d`;
+	$python_default =~ s/^\s+//;
+	$python_default =~ s/\s+$//;
 	foreach my $python ("python", grep(!/^$python_default/,
 				(split ' ', `pyversions -r 2>/dev/null`))) {
 		if (-x "/usr/bin/".$python) {