From: Dr. Tobias Quathamer Date: Thu, 1 Aug 2019 11:50:48 +0000 (+0200) Subject: Fix Lintian warnings about wrong interpreter path X-Git-Tag: archive/raspbian/1.15.6-1+rpi1^2~4 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=12972933b1199f02665e26b919e80bb7da86b408;p=golang-1.15.git 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," Gbp-Pq: Name 0002-Fix-Lintian-warnings-about-wrong-interpreter-path.patch --- diff --git a/src/syscall/mksyscall.pl b/src/syscall/mksyscall.pl index 25b40d7b..007d03ca 100755 --- 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. diff --git a/src/syscall/mksyscall_libc.pl b/src/syscall/mksyscall_libc.pl index 5ceedc81..405033ce 100755 --- a/src/syscall/mksyscall_libc.pl +++ b/src/syscall/mksyscall_libc.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. diff --git a/src/syscall/mksysctl_openbsd.pl b/src/syscall/mksysctl_openbsd.pl index ea462a7f..7e8a3e20 100755 --- 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 diff --git a/src/syscall/mksysnum_darwin.pl b/src/syscall/mksysnum_darwin.pl index af21e855..9e592610 100755 --- 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. diff --git a/src/syscall/mksysnum_dragonfly.pl b/src/syscall/mksysnum_dragonfly.pl index e9a634b5..a8df18d2 100755 --- 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. diff --git a/src/syscall/mksysnum_freebsd.pl b/src/syscall/mksysnum_freebsd.pl index c04ada9e..f9b7b913 100755 --- 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. diff --git a/src/syscall/mksysnum_linux.pl b/src/syscall/mksysnum_linux.pl index 5fb1d0ee..ebeb9a82 100755 --- 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. diff --git a/src/syscall/mksysnum_netbsd.pl b/src/syscall/mksysnum_netbsd.pl index 4f5150a0..53783ff9 100755 --- 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. diff --git a/src/syscall/mksysnum_openbsd.pl b/src/syscall/mksysnum_openbsd.pl index 0b0c9df1..41e8f47c 100755 --- 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.