File: 0001-fix-shebang.patch

package info (click to toggle)
libtie-cache-perl 0.21-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 160 kB
  • ctags: 53
  • sloc: perl: 1,066; makefile: 7
file content (21 lines) | stat: -rw-r--r-- 389 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Description: Fix path to perl interpreter
Author: Harlan Lieberman-Berg <hlieberman@setec.io>
Forwarded: not-needed
Last-Updated: 2015-11-15

--- a/Cache.pm
+++ b/Cache.pm
@@ -1,4 +1,4 @@
-#!/usr/local/bin/perl -w
+#!/usr/bin/perl -w
 
 package Tie::Cache;
 use strict;
--- a/test.pl
+++ b/test.pl
@@ -1,4 +1,4 @@
-#!/usr/local/bin/perl
+#!/usr/bin/perl
 
 use Tie::Cache;
 use Benchmark;