summaryrefslogtreecommitdiff
path: root/dh_python
diff options
context:
space:
mode:
authorjoey <joey>2003-08-08 16:00:12 +0000
committerjoey <joey>2003-08-08 16:00:12 +0000
commit742d35523bbb24a4da8860f0a46701244dd5e214 (patch)
tree493c942df89444a7386d1ee99e6ecea9f6ff017a /dh_python
parent1b294974795510843d19adc178e936eb4f2c65bb (diff)
r1580: * dh_python: support python ver 2.3. Closes: #204556
Diffstat (limited to 'dh_python')
-rwxr-xr-xdh_python2
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_python b/dh_python
index 81da6da5..9bbffa4c 100755
--- a/dh_python
+++ b/dh_python
@@ -67,7 +67,7 @@ my $python_version = `$python -V 2>&1`;
if ("$python_version" eq "") {
error("Python is not installed, aborting. (Probably forgot to Build-Depend on python.)");
}
-elsif ($python_version =~ m/^Python\s+(\d+)\.(\d+)\.\d+/) {
+elsif ($python_version =~ m/^Python\s+(\d+)\.(\d+)(\.\d+)*/) {
$python_version = "$1.$2" ;
$python_major = $1 ;
} else {