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

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