summaryrefslogtreecommitdiff
path: root/Debian/Debhelper/Sequence/python_support.pm
blob: 3d03ebb3bc2589687021c9ad608fe1d635691d62 (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_after("dh_perl", "dh_pysupport");
}

1