File: 02-perl-libs-path-fix.diff

package info (click to toggle)
ftpmirror 1.96%2Bdfsg-16
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 1,080 kB
  • sloc: perl: 2,496; sh: 1,811; makefile: 51; ansic: 22
file content (24 lines) | stat: -rwxr-xr-x 695 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#! /bin/sh /usr/share/dpatch/dpatch-run
## perl-libs-path-fix.dpatch by Dario Minnucci <debian@midworld.net>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Added path to required libraries.

@DPATCH@
diff -urNad ftpmirror-1.96+dfsg~/ftpmirror ftpmirror-1.96+dfsg/ftpmirror
--- ftpmirror-1.96+dfsg~/ftpmirror	2007-12-07 04:57:45.369748688 +0100
+++ ftpmirror-1.96+dfsg/ftpmirror	2007-12-07 04:57:45.565759858 +0100
@@ -31,6 +31,13 @@
 use strict;
 use vars qw($VERSION $LOG $program);
 
+;#
+;# Added by Dario Minnucci (for debianization in version 1.96-1)
+;#
+;# libs
+use lib ('/usr/lib/ftpmirror');
+use lib ('/usr/share/ftpmirror');
+
 ;# modules
 use Fan;