Blame SOURCES/0004-don-t-use-usr-bin-env-in-shebang.patch

ce9878
From e263e19aa1c63dbcbe710e8aae79c8e298606e4c Mon Sep 17 00:00:00 2001
ce9878
From: Peter Schiffer <pschiffe@redhat.com>
ce9878
Date: Tue, 4 Nov 2014 14:49:57 +0100
ce9878
Subject: [PATCH] don't use /usr/bin/env in shebang
ce9878
ce9878
There might be an issue that the script is executed with unwanted version of
ce9878
<lang> if that language is provided by enabled dynamic software collection.
ce9878
ce9878
Resolves: #987069
ce9878
---
ce9878
 contrib/chem/chem.pl       | 2 +-
ce9878
 contrib/groffer/groffer.pl | 2 +-
ce9878
 contrib/groffer/roff2.pl   | 2 +-
ce9878
 src/roff/grog/grog.pl      | 2 +-
ce9878
 4 files changed, 4 insertions(+), 4 deletions(-)
ce9878
ce9878
diff --git a/contrib/chem/chem.pl b/contrib/chem/chem.pl
ce9878
index 1a8b3cc..15eda5f 100755
ce9878
--- a/contrib/chem/chem.pl
ce9878
+++ b/contrib/chem/chem.pl
ce9878
@@ -1,4 +1,4 @@
ce9878
-#! /usr/bin/env perl
ce9878
+#! /usr/bin/perl
ce9878
 
ce9878
 # chem - a groff preprocessor for producing chemical structure diagrams
ce9878
 
ce9878
diff --git a/contrib/groffer/groffer.pl b/contrib/groffer/groffer.pl
ce9878
index 4e2e575..913e8eb 100755
ce9878
--- a/contrib/groffer/groffer.pl
ce9878
+++ b/contrib/groffer/groffer.pl
ce9878
@@ -1,4 +1,4 @@
ce9878
-#! /usr/bin/env perl
ce9878
+#! /usr/bin/perl
ce9878
 
ce9878
 # groffer - display groff files
ce9878
 
ce9878
diff --git a/contrib/groffer/roff2.pl b/contrib/groffer/roff2.pl
ce9878
index f0ca9f2..1b8577f 100755
ce9878
--- a/contrib/groffer/roff2.pl
ce9878
+++ b/contrib/groffer/roff2.pl
ce9878
@@ -1,4 +1,4 @@
ce9878
-#! /usr/bin/env perl
ce9878
+#! /usr/bin/perl
ce9878
 
ce9878
 # roff2* - transform roff files into other formats
ce9878
 
ce9878
diff --git a/src/roff/grog/grog.pl b/src/roff/grog/grog.pl
ce9878
index fb7b54c..9baa869 100644
ce9878
--- a/src/roff/grog/grog.pl
ce9878
+++ b/src/roff/grog/grog.pl
ce9878
@@ -1,4 +1,4 @@
ce9878
-#! /usr/bin/env perl
ce9878
+#! /usr/bin/perl
ce9878
 # grog - guess options for groff command
ce9878
 # Inspired by doctype script in Kernighan & Pike, Unix Programming
ce9878
 # Environment, pp 306-8.
ce9878
-- 
ce9878
1.9.3
ce9878