77 lines
2.1 KiB
Diff
77 lines
2.1 KiB
Diff
|
From e263e19aa1c63dbcbe710e8aae79c8e298606e4c Mon Sep 17 00:00:00 2001
|
||
|
From: Peter Schiffer <pschiffe@redhat.com>
|
||
|
Date: Tue, 4 Nov 2014 14:49:57 +0100
|
||
|
Subject: [PATCH] don't use /usr/bin/env in shebang
|
||
|
|
||
|
There might be an issue that the script is executed with unwanted version of
|
||
|
<lang> if that language is provided by enabled dynamic software collection.
|
||
|
|
||
|
Resolves: #987069
|
||
|
---
|
||
|
contrib/chem/chem.pl | 2 +-
|
||
|
contrib/groffer/groffer.pl | 2 +-
|
||
|
contrib/groffer/roff2.pl | 2 +-
|
||
|
src/roff/grog/grog.pl | 2 +-
|
||
|
4 files changed, 4 insertions(+), 4 deletions(-)
|
||
|
|
||
|
Index: b/contrib/chem/chem.pl
|
||
|
===================================================================
|
||
|
--- a/contrib/chem/chem.pl
|
||
|
+++ b/contrib/chem/chem.pl
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-#! /usr/bin/env perl
|
||
|
+#! /usr/bin/perl
|
||
|
|
||
|
# chem - a groff preprocessor for producing chemical structure diagrams
|
||
|
|
||
|
Index: b/contrib/glilypond/glilypond.pl
|
||
|
===================================================================
|
||
|
--- a/contrib/glilypond/glilypond.pl
|
||
|
+++ b/contrib/glilypond/glilypond.pl
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-#! /usr/bin/env perl
|
||
|
+#! /usr/bin/perl
|
||
|
|
||
|
package main;
|
||
|
|
||
|
Index: b/contrib/gperl/gperl.pl
|
||
|
===================================================================
|
||
|
--- a/contrib/gperl/gperl.pl
|
||
|
+++ b/contrib/gperl/gperl.pl
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-#! /usr/bin/env perl
|
||
|
+#! /usr/bin/perl
|
||
|
|
||
|
# gperl - add Perl part to groff files, this is the preprocessor for that
|
||
|
|
||
|
Index: b/contrib/gpinyin/gpinyin.pl
|
||
|
===================================================================
|
||
|
--- a/contrib/gpinyin/gpinyin.pl
|
||
|
+++ b/contrib/gpinyin/gpinyin.pl
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-#! /usr/bin/env perl
|
||
|
+#! /usr/bin/perl
|
||
|
|
||
|
# gpinyin - European-like Chinese writing 'pinyin' into 'groff'
|
||
|
|
||
|
Index: b/mdate.pl
|
||
|
===================================================================
|
||
|
--- a/mdate.pl
|
||
|
+++ b/mdate.pl
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-#! /usr/bin/env perl
|
||
|
+#! /usr/bin/perl
|
||
|
#
|
||
|
# Copyright (C) 1991-2020 Free Software Foundation, Inc.
|
||
|
#
|
||
|
Index: b/tmac/hyphenex.pl
|
||
|
===================================================================
|
||
|
--- a/tmac/hyphenex.pl
|
||
|
+++ b/tmac/hyphenex.pl
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-#! /usr/bin/env perl
|
||
|
+#! /usr/bin/perl
|
||
|
#
|
||
|
#
|
||
|
# hyphenex.pl
|