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

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