chiark / gitweb /
eff460b76fa3fdb0d20955d5daa99da47ad39706
[dgit.git] / Debian / Dgit / Infra.pm
1 # -*- perl -*-
2
3 package Debian::Dgit::Infra;
4
5 use strict;
6 use warnings;
7
8 # Scripts and programs which are going to `use Debian::Dgit' but which
9 # live in dgit-infrastructure (ie are installed with install-infra)
10 # should `use Debian::Dgit::Infra' first.  All this module does is
11 # adjust @INC so that the script gets the version of the script from
12 # the dgit-infrastructure package (which is installed in a different
13 # location and may be a different version).
14
15 # unshift @INC, q{/usr/share/dgit/infra/perl5}; ###substituted###
16
17 1;