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
|
Description: Replace "#!/usr/bin/env perl" with "/usr/bin/perl"
Adjust script shebang lines in compliance with Policy 10.4.
Author: Nicholas Breen
Forwarded: not-needed
Last-Update: 2023-11-26
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
Index: gromacs/scripts/demux.pl
===================================================================
--- gromacs.orig/scripts/demux.pl
+++ gromacs/scripts/demux.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
use warnings;
# in: input filename
Index: gromacs/scripts/xplor2gmx.pl
===================================================================
--- gromacs.orig/scripts/xplor2gmx.pl
+++ gromacs/scripts/xplor2gmx.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
use strict;
use warnings;
|