]> git.donarmstrong.com Git - debhelper.git/blob - Debian/Debhelper/Sequence/python_support.pm
3d03ebb3bc2589687021c9ad608fe1d635691d62
[debhelper.git] / Debian / Debhelper / Sequence / python_support.pm
1 #!/usr/bin/perl
2 # debhelper sequence file for python-support
3
4 use warnings;
5 use strict;
6 use Debian::Debhelper::Dh_Lib;
7
8 # Test if dh_pysupport is available before inserting it.
9 # (This would not be needed if this file was contained in the python-support
10 # package.)
11 if (-x "/usr/bin/dh_pysupport") {
12         insert_after("dh_perl", "dh_pysupport");
13 }
14
15 1