File: Infra.pm

package info (click to toggle)
dgit 10.7%2Bdeb12u3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,120 kB
  • sloc: perl: 12,313; sh: 5,533; makefile: 306; tcl: 69
file content (17 lines) | stat: -rw-r--r-- 532 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- perl -*-

package Debian::Dgit::Infra;

use strict;
use warnings;

# Scripts and programs which are going to `use Debian::Dgit' but which
# live in dgit-infrastructure (ie are installed with install-infra)
# should `use Debian::Dgit::Infra' first.  All this module does is
# adjust @INC so that the script gets the version of the script from
# the dgit-infrastructure package (which is installed in a different
# location and may be a different version).

# unshift @INC, q{/usr/share/dgit/infra/perl5}; ###substituted###

1;