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

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