From 59bf135952024d540b22a3016f6eb1385a91d273 Mon Sep 17 00:00:00 2001
From: Colin Watson <cjwatson@debian.org>
Date: Wed, 15 Jan 2014 16:19:48 +0000
Subject: Apply #!/usr/bin/perl to all installed Perl scripts

Forwarded: no
Last-Update: 2010-05-26

Patch-Name: shebang.patch
---
 decrypt/decr     | 2 +-
 decrypt/encrypt  | 1 +
 examples/filtdef | 2 +-
 examples/filtuu  | 1 +
 4 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/decrypt/decr b/decrypt/decr
index 592414e..66cfcef 100644
--- a/decrypt/decr
+++ b/decrypt/decr
@@ -1,4 +1,4 @@
-#!/usr/local/bin/perl
+#!/usr/bin/perl
 
 # This script will decrypt a Perl script that has been encrypted using the
 # "encrypt" script. It cannot decrypt any other kind of encrypted Perl script.
diff --git a/decrypt/encrypt b/decrypt/encrypt
index 314612a..c92a62b 100755
--- a/decrypt/encrypt
+++ b/decrypt/encrypt
@@ -1,3 +1,4 @@
+#!/usr/bin/perl
 
 require 5.002 ;
 
diff --git a/examples/filtdef b/examples/filtdef
index 6e47dea..97af007 100755
--- a/examples/filtdef
+++ b/examples/filtdef
@@ -1,4 +1,4 @@
-#!/usr/local/bin/perl
+#!/usr/bin/perl
 
 use strict ;
 use warnings ;
diff --git a/examples/filtuu b/examples/filtuu
index e16ab39..dfebfc5 100755
--- a/examples/filtuu
+++ b/examples/filtuu
@@ -1,3 +1,4 @@
+#!/usr/bin/perl
 
 print "use Filter::UUdecode ;\n" ;
 while (<>) {
