1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
From: "Dr. Tobias Quathamer" <toddy@debian.org>
Date: Wed, 19 Dec 2018 13:16:45 +0100
Subject: Fix Lintian warnings about wrong interpreter path
The command used for this change is as follows:
grep -rH "/usr/bin/env perl" * | cut -d: -f1 | xargs -n1 sed -i -e "s,/usr/bin/env perl,/usr/bin/perl,"
---
src/cmd/vendor/golang.org/x/sys/unix/mksyscall.pl | 2 +-
src/cmd/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl | 2 +-
src/cmd/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl | 2 +-
src/cmd/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl | 2 +-
src/cmd/vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl | 2 +-
src/cmd/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl | 2 +-
src/cmd/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl | 2 +-
src/cmd/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl | 2 +-
src/syscall/mksyscall.pl | 2 +-
src/syscall/mksyscall_solaris.pl | 2 +-
src/syscall/mksysctl_openbsd.pl | 2 +-
src/syscall/mksysnum_darwin.pl | 2 +-
src/syscall/mksysnum_dragonfly.pl | 2 +-
src/syscall/mksysnum_freebsd.pl | 2 +-
src/syscall/mksysnum_linux.pl | 2 +-
src/syscall/mksysnum_netbsd.pl | 2 +-
src/syscall/mksysnum_openbsd.pl | 2 +-
test/errchk | 2 +-
18 files changed, 18 insertions(+), 18 deletions(-)
--- a/src/cmd/vendor/golang.org/x/sys/unix/mksyscall.pl
+++ b/src/cmd/vendor/golang.org/x/sys/unix/mksyscall.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
--- a/src/cmd/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl
+++ b/src/cmd/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
--- a/src/cmd/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl
+++ b/src/cmd/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# Copyright 2011 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
--- a/src/cmd/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl
+++ b/src/cmd/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
--- a/src/cmd/vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl
+++ b/src/cmd/vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
--- a/src/cmd/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl
+++ b/src/cmd/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
--- a/src/cmd/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl
+++ b/src/cmd/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
--- a/src/cmd/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl
+++ b/src/cmd/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
--- a/src/syscall/mksyscall.pl
+++ b/src/syscall/mksyscall.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
--- a/src/syscall/mksyscall_solaris.pl
+++ b/src/syscall/mksyscall_solaris.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
--- a/src/syscall/mksysctl_openbsd.pl
+++ b/src/syscall/mksysctl_openbsd.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# Copyright 2011 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
--- a/src/syscall/mksysnum_darwin.pl
+++ b/src/syscall/mksysnum_darwin.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
--- a/src/syscall/mksysnum_dragonfly.pl
+++ b/src/syscall/mksysnum_dragonfly.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
--- a/src/syscall/mksysnum_freebsd.pl
+++ b/src/syscall/mksysnum_freebsd.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
--- a/src/syscall/mksysnum_linux.pl
+++ b/src/syscall/mksysnum_linux.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
--- a/src/syscall/mksysnum_netbsd.pl
+++ b/src/syscall/mksysnum_netbsd.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
--- a/src/syscall/mksysnum_openbsd.pl
+++ b/src/syscall/mksysnum_openbsd.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
--- a/test/errchk
+++ b/test/errchk
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
|