|
|
910785 |
From 6d28b9227823b0a6ee9650a97ea406cf4ef8160e Mon Sep 17 00:00:00 2001
|
|
|
910785 |
From: Peter Schiffer <pschiffe@redhat.com>
|
|
|
910785 |
Date: Tue, 23 Jul 2013 14:09:50 +0200
|
|
|
910785 |
Subject: [PATCH] don't use /usr/bin/env in shebang
|
|
|
910785 |
|
|
|
910785 |
There might be an issue that the script is executed with unwanted version of
|
|
|
910785 |
<lang> if that language is provided by enabled dynamic software collection.
|
|
|
910785 |
|
|
|
910785 |
Resolves: #987069
|
|
|
910785 |
---
|
|
|
910785 |
contrib/chem/chem.pl | 2 +-
|
|
|
910785 |
contrib/groffer/perl/groffer.pl | 2 +-
|
|
|
910785 |
contrib/groffer/perl/roff2.pl | 2 +-
|
|
|
910785 |
src/roff/grog/grog.pl | 2 +-
|
|
|
910785 |
4 files changed, 4 insertions(+), 4 deletions(-)
|
|
|
910785 |
|
|
|
910785 |
diff --git a/contrib/chem/chem.pl b/contrib/chem/chem.pl
|
|
|
910785 |
index dacf8b4..932606a 100755
|
|
|
910785 |
--- a/contrib/chem/chem.pl
|
|
|
910785 |
+++ b/contrib/chem/chem.pl
|
|
|
910785 |
@@ -1,4 +1,4 @@
|
|
|
910785 |
-#! /usr/bin/env perl
|
|
|
910785 |
+#! /usr/bin/perl
|
|
|
910785 |
|
|
|
910785 |
# chem - a groff preprocessor for producing chemical structure diagrams
|
|
|
910785 |
|
|
|
910785 |
diff --git a/contrib/groffer/perl/groffer.pl b/contrib/groffer/perl/groffer.pl
|
|
|
910785 |
index f56fbfc..d0352d0 100755
|
|
|
910785 |
--- a/contrib/groffer/perl/groffer.pl
|
|
|
910785 |
+++ b/contrib/groffer/perl/groffer.pl
|
|
|
910785 |
@@ -1,4 +1,4 @@
|
|
|
910785 |
-#! /usr/bin/env perl
|
|
|
910785 |
+#! /usr/bin/perl
|
|
|
910785 |
|
|
|
910785 |
# groffer - display groff files
|
|
|
910785 |
|
|
|
910785 |
diff --git a/contrib/groffer/perl/roff2.pl b/contrib/groffer/perl/roff2.pl
|
|
|
910785 |
index cf95f95..9ba6860 100755
|
|
|
910785 |
--- a/contrib/groffer/perl/roff2.pl
|
|
|
910785 |
+++ b/contrib/groffer/perl/roff2.pl
|
|
|
910785 |
@@ -1,4 +1,4 @@
|
|
|
910785 |
-#! /usr/bin/env perl
|
|
|
910785 |
+#! /usr/bin/perl
|
|
|
910785 |
|
|
|
910785 |
# roff2* - transform roff files into other formats
|
|
|
910785 |
|
|
|
910785 |
diff --git a/src/roff/grog/grog.pl b/src/roff/grog/grog.pl
|
|
|
910785 |
index 3f33d86..77adf78 100644
|
|
|
910785 |
--- a/src/roff/grog/grog.pl
|
|
|
910785 |
+++ b/src/roff/grog/grog.pl
|
|
|
910785 |
@@ -1,4 +1,4 @@
|
|
|
910785 |
-#! /usr/bin/env perl
|
|
|
910785 |
+#! /usr/bin/perl
|
|
|
910785 |
# grog - guess options for groff command
|
|
|
910785 |
# Inspired by doctype script in Kernighan & Pike, Unix Programming
|
|
|
910785 |
# Environment, pp 306-8.
|
|
|
910785 |
--
|
|
|
910785 |
1.7.11.7
|
|
|
910785 |
|