Subject: | Unnecessary #!/usr/bin/env |
ExtUtils::MakeMaker automatically corrects shell bangs to currently running interpreter. It's not necessary to call /usr/bin/env in the bin/nas' shell bang. See attached patch.
Subject: | Net-Appliance-Session-4.200000-Do-not-use-usr-bin-env.patch |
From 941ffea3b51d4e759ae4be5052166c1f9d5fefd8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
Date: Tue, 22 Sep 2015 15:18:17 +0200
Subject: [PATCH] Do not use /usr/bin/env
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Signed-off-by: Petr PÃsaÅ <ppisar@redhat.com>
---
bin/nas | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/nas b/bin/nas
index 9a0bea0..094d749 100755
--- a/bin/nas
+++ b/bin/nas
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!perl
use strict;
use warnings FATAL => 'all';
--
2.4.3