summaryrefslogtreecommitdiff
path: root/Debian/Debhelper/Sequence/python_support.pm
blob: c93d2126d018f83310b6c6ede457215d7086f140 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl
# debhelper sequence file for python-support

use warnings;
use strict;
use Debian::Debhelper::Dh_Lib;

# Test if dh_pysupport is available before inserting it.
# (This would not be needed if this file was contained in the python-support
# package.)
if (-x "/usr/bin/dh_pysupport") {
	insert_before("dh_installinit", "dh_pysupport");
}

1