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

68f74b
From 6c997078a8f74429f58e4679b7630de7962e18b0 Mon Sep 17 00:00:00 2001
68f74b
From: Peter Schiffer <pschiffe@redhat.com>
68f74b
Date: Tue, 4 Nov 2014 14:49:57 +0100
68f74b
Subject: [PATCH 4/4] don't use /usr/bin/env in shebang
68f74b
68f74b
There might be an issue that the script is executed with unwanted version of
68f74b
<lang> if that language is provided by enabled dynamic software collection.
68f74b
68f74b
Resolves: #987069
68f74b
---
68f74b
 contrib/chem/chem.pl       | 2 +-
68f74b
 contrib/groffer/groffer.pl | 2 +-
68f74b
 contrib/groffer/roff2.pl   | 2 +-
68f74b
 src/roff/grog/grog.pl      | 2 +-
68f74b
 4 files changed, 4 insertions(+), 4 deletions(-)
68f74b
68f74b
diff --git a/contrib/chem/chem.pl b/contrib/chem/chem.pl
68f74b
index 883907b..57e0216 100755
68f74b
--- a/contrib/chem/chem.pl
68f74b
+++ b/contrib/chem/chem.pl
68f74b
@@ -1,4 +1,4 @@
68f74b
-#! /usr/bin/env perl
68f74b
+#! /usr/bin/perl
68f74b
 
68f74b
 # chem - a groff preprocessor for producing chemical structure diagrams
68f74b
 
68f74b
diff --git a/contrib/groffer/groffer.pl b/contrib/groffer/groffer.pl
68f74b
index 697dacb..654f18e 100755
68f74b
--- a/contrib/groffer/groffer.pl
68f74b
+++ b/contrib/groffer/groffer.pl
68f74b
@@ -1,4 +1,4 @@
68f74b
-#! /usr/bin/env perl
68f74b
+#! /usr/bin/perl
68f74b
 
68f74b
 # groffer - display groff files
68f74b
 
68f74b
diff --git a/contrib/groffer/roff2.pl b/contrib/groffer/roff2.pl
68f74b
index 24af006..35a560c 100755
68f74b
--- a/contrib/groffer/roff2.pl
68f74b
+++ b/contrib/groffer/roff2.pl
68f74b
@@ -1,4 +1,4 @@
68f74b
-#! /usr/bin/env perl
68f74b
+#! /usr/bin/perl
68f74b
 
68f74b
 # roff2* - transform roff files into other formats
68f74b
 
68f74b
diff --git a/src/roff/grog/grog.pl b/src/roff/grog/grog.pl
68f74b
index f7fb8e4..1d5c3d8 100644
68f74b
--- a/src/roff/grog/grog.pl
68f74b
+++ b/src/roff/grog/grog.pl
68f74b
@@ -1,4 +1,4 @@
68f74b
-#! /usr/bin/env perl
68f74b
+#! /usr/bin/perl
68f74b
 # grog - guess options for groff command
68f74b
 # Inspired by doctype script in Kernighan & Pike, Unix Programming
68f74b
 # Environment, pp 306-8.
68f74b
-- 
68f74b
2.21.1
68f74b