File: dpatch.pm

package info (click to toggle)
dpatch 2.0.38%2Bnmu1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 676 kB
  • sloc: sh: 1,013; makefile: 225; awk: 57; perl: 17
file content (15 lines) | stat: -rw-r--r-- 295 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl
use warnings;
use strict;
use Debian::Debhelper::Dh_Lib;

insert_before("dh_update_autotools_config", "dh_dpatch_patch");
insert_before("dh_clean", "dh_dpatch_unpatch");

# Eval to avoid problem with debhelper < 7.3.12
eval {
    add_command("dh_dpatch_patch", "patch");
};

1;