Fix shebang breaking some shells. Closes #2067.

This commit is contained in:
Wilson Snyder 2020-01-09 20:01:12 -05:00
parent 2a50fafef2
commit a2911ed933
30 changed files with 58 additions and 59 deletions

View File

@ -38,6 +38,8 @@ The contributors that suggested a given feature are shown in []. Thanks!
**** Fix %{number}s with strings. #2093. [agrobman] **** Fix %{number}s with strings. #2093. [agrobman]
**** Fix shebang breaking some shells. Closes #2067. [zdave]
* Verilator 4.024 2019-12-08 * Verilator 4.024 2019-12-08

View File

@ -1,6 +1,4 @@
: # -*-Mode: perl;-*- use perl, wherever it is #!/usr/bin/env perl
eval 'exec perl -wS $0 ${1+"$@"}'
if 0;
###################################################################### ######################################################################
# #
# Copyright 2003-2020 by Wilson Snyder. This program is free software; you # Copyright 2003-2020 by Wilson Snyder. This program is free software; you

View File

@ -1,6 +1,4 @@
: # -*-Mode: perl;-*- use perl, wherever it is #!/usr/bin/env perl
eval 'exec perl -wS $0 ${1+"$@"}'
if 0;
###################################################################### ######################################################################
# #
# Copyright 2003-2020 by Wilson Snyder. This program is free software; you # Copyright 2003-2020 by Wilson Snyder. This program is free software; you

View File

@ -1,10 +1,7 @@
: # -*-Mode: perl;-*- use perl, wherever it is #!/usr/bin/env perl
eval 'exec perl -wS $0 ${1+"$@"}'
if 0;
# See copyright, etc in below POD section. # See copyright, etc in below POD section.
###################################################################### ######################################################################
require 5.006_001;
use warnings; use warnings;
use Getopt::Long; use Getopt::Long;
use IO::File; use IO::File;

View File

@ -1,11 +1,9 @@
: # -*-Mode: perl;-*- use perl, wherever it is #!/usr/bin/env perl
eval 'exec perl -wS $0 ${1+"$@"}'
if 0;
# See copyright, etc in below POD section. # See copyright, etc in below POD section.
###################################################################### ######################################################################
use strict;
use warnings; use warnings;
use strict;
use Getopt::Long; use Getopt::Long;
use IO::File; use IO::File;
use Pod::Usage; use Pod::Usage;

View File

@ -1,6 +1,4 @@
: # -*-Mode: perl;-*- use perl, wherever it is #!/usr/bin/env perl
eval 'exec perl -wS $0 ${1+"$@"}'
if 0;
# DESCRIPTION: Print include statements for each ARGV # DESCRIPTION: Print include statements for each ARGV
# #
# Copyright 2003-2020 by Wilson Snyder. This package is free software; you can # Copyright 2003-2020 by Wilson Snyder. This package is free software; you can

View File

@ -1,6 +1,4 @@
: # -*-Mode: perl;-*- use perl, wherever it is #!/usr/bin/env perl
eval 'exec perl -wS $0 ${1+"$@"}'
if 0;
# See copyright, etc in below POD section. # See copyright, etc in below POD section.
###################################################################### ######################################################################

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl -w #!/usr/bin/env perl
###################################################################### ######################################################################
# #
# Copyright 2007-2020 by Wilson Snyder. This package is free software; you # Copyright 2007-2020 by Wilson Snyder. This package is free software; you
@ -15,6 +15,7 @@
# DESCRIPTION: Diff bison files # DESCRIPTION: Diff bison files
use warnings;
use Getopt::Long; use Getopt::Long;
use IO::File; use IO::File;
use strict; use strict;

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl -w #!/usr/bin/env perl
###################################################################### ######################################################################
# #
# Copyright 2007-2020 by Wilson Snyder. This package is free software; you # Copyright 2007-2020 by Wilson Snyder. This package is free software; you
@ -15,6 +15,7 @@
# DESCRIPTION: Debugging of bison output # DESCRIPTION: Debugging of bison output
use warnings;
use strict; use strict;
my $Debug; my $Debug;

View File

@ -1,7 +1,8 @@
#!/usr/bin/perl -w #!/usr/bin/env perl
# See copyright, etc in below POD section. # See copyright, etc in below POD section.
###################################################################### ######################################################################
use warnings;
use Cwd; use Cwd;
use File::Copy qw(cp); use File::Copy qw(cp);
use File::Path qw(mkpath); use File::Path qw(mkpath);

View File

@ -1,8 +1,8 @@
#!/usr/bin/perl -w #!/usr/bin/env perl
# See copyright, etc in below POD section. # See copyright, etc in below POD section.
###################################################################### ######################################################################
require 5.006_001; use warnings;
use Getopt::Long; use Getopt::Long;
use IO::File; use IO::File;
use Pod::Usage; use Pod::Usage;

View File

@ -1,8 +1,8 @@
#!/usr/bin/perl -w #!/usr/bin/env perl
# See copyright, etc in below POD section. # See copyright, etc in below POD section.
###################################################################### ######################################################################
require 5.006_001; use warnings;
use Getopt::Long; use Getopt::Long;
use IO::File; use IO::File;
use Pod::Usage; use Pod::Usage;

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl -w #!/usr/bin/env perl
###################################################################### ######################################################################
# #
# Copyright 2007-2020 by Wilson Snyder. This package is free software; you # Copyright 2007-2020 by Wilson Snyder. This package is free software; you
@ -15,6 +15,7 @@
# DESCRIPTION: Diff flex files # DESCRIPTION: Diff flex files
use warnings;
use IO::File; use IO::File;
use strict; use strict;

View File

@ -1,7 +1,8 @@
#!/usr/bin/perl -w #!/usr/bin/env perl
# See copyright, etc in below POD section. # See copyright, etc in below POD section.
###################################################################### ######################################################################
use warnings;
use Getopt::Long; use Getopt::Long;
#use Data::Dumper; $Data::Dumper::Indent=1; $Data::Dumper::Sortkeys=1; #Debug #use Data::Dumper; $Data::Dumper::Indent=1; $Data::Dumper::Sortkeys=1; #Debug
use IO::File; use IO::File;

View File

@ -1,7 +1,8 @@
#!/usr/bin/perl -w #!/usr/bin/env perl
# See copyright, etc in below POD section. # See copyright, etc in below POD section.
###################################################################### ######################################################################
use warnings;
use Getopt::Long; use Getopt::Long;
use Cwd; use Cwd;
use IO::File; use IO::File;

View File

@ -1,8 +1,8 @@
#!/usr/bin/perl -w #!/usr/bin/env perl
# See copyright, etc in below POD section. # See copyright, etc in below POD section.
###################################################################### ######################################################################
require 5.006_001; use warnings;
use strict; use strict;
#====================================================================== #======================================================================

View File

@ -1,8 +1,8 @@
#!/usr/bin/perl -w #!/usr/bin/env perl
# See copyright, etc in below POD section. # See copyright, etc in below POD section.
###################################################################### ######################################################################
require 5.006_001; use warnings;
use strict; use strict;
#====================================================================== #======================================================================

View File

@ -1,8 +1,8 @@
#!/usr/bin/perl -w #!/usr/bin/env perl
# See copyright, etc in below POD section. # See copyright, etc in below POD section.
###################################################################### ######################################################################
require 5.006_001; use warnings;
use strict; use strict;
#====================================================================== #======================================================================

View File

@ -1,8 +1,8 @@
#!/usr/bin/perl -w #!/usr/bin/env perl
# See copyright, etc in below POD section. # See copyright, etc in below POD section.
###################################################################### ######################################################################
require 5.006_001; use warnings;
use strict; use strict;
#====================================================================== #======================================================================

View File

@ -1,8 +1,8 @@
#!/usr/bin/perl -w #!/usr/bin/env perl
# See copyright, etc in below POD section. # See copyright, etc in below POD section.
###################################################################### ######################################################################
require 5.006_001; use warnings;
use Getopt::Long; use Getopt::Long;
use IO::File; use IO::File;
use Pod::Usage; use Pod::Usage;

View File

@ -1,8 +1,8 @@
#!/usr/bin/perl -w #!/usr/bin/env perl
# See copyright, etc in below POD section. # See copyright, etc in below POD section.
###################################################################### ######################################################################
#require 5.006_001; use warnings;
use Getopt::Long; use Getopt::Long;
use IO::File; use IO::File;
use Pod::Usage; use Pod::Usage;

View File

@ -1,8 +1,8 @@
#!/usr/bin/perl -w #!/usr/bin/env perl
# See copyright, etc in below POD section. # See copyright, etc in below POD section.
###################################################################### ######################################################################
require 5.006_001; use warnings;
use Getopt::Long; use Getopt::Long;
use IO::File; use IO::File;
use Pod::Usage; use Pod::Usage;

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl -w #!/usr/bin/env perl
###################################################################### ######################################################################
# #
# Copyright 2005-2020 by Wilson Snyder. Verilator is free software; you # Copyright 2005-2020 by Wilson Snyder. Verilator is free software; you
@ -12,9 +12,10 @@
# GNU General Public License for more details. # GNU General Public License for more details.
# #
###################################################################### ######################################################################
# DESCRIPTION: Query's subversion to get version number # DESCRIPTION: Query's subversion to get version number
use warnings;
my $dir = $ARGV[0]; defined $dir or die "%Error: No directory argument,"; my $dir = $ARGV[0]; defined $dir or die "%Error: No directory argument,";
chdir $dir; chdir $dir;

View File

@ -1,8 +1,8 @@
#!/usr/bin/perl -w #!/usr/bin/env perl
# See copyright, etc in below POD section. # See copyright, etc in below POD section.
###################################################################### ######################################################################
require 5.006_001; use warnings;
use Getopt::Long; use Getopt::Long;
use IO::File; use IO::File;
use Pod::Usage; use Pod::Usage;

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl -w #!/usr/bin/env perl
###################################################################### ######################################################################
# #
# Copyright 2002-2020 by Wilson Snyder. Verilator is free software; you # Copyright 2002-2020 by Wilson Snyder. Verilator is free software; you
@ -12,9 +12,10 @@
# GNU General Public License for more details. # GNU General Public License for more details.
# #
###################################################################### ######################################################################
# DESCRIPTION: Edits flex output to get around various broken flex issues. # DESCRIPTION: Edits flex output to get around various broken flex issues.
use warnings;
my $Opt_Prefix = $ARGV[0] or die "%Error: No prefix specified,"; my $Opt_Prefix = $ARGV[0] or die "%Error: No prefix specified,";
foreach my $line (<STDIN>) { foreach my $line (<STDIN>) {

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl -w #!/usr/bin/env perl
###################################################################### ######################################################################
# #
# Copyright 2002-2020 by Wilson Snyder. Verilator is free software; you # Copyright 2002-2020 by Wilson Snyder. Verilator is free software; you
@ -12,9 +12,10 @@
# GNU General Public License for more details. # GNU General Public License for more details.
# #
###################################################################### ######################################################################
# DESCRIPTION: Edits pod2latex output # DESCRIPTION: Edits pod2latex output
use warnings;
my $Opt_DistTitle = $ARGV[0] or die "%Error: No disttitle specified,"; my $Opt_DistTitle = $ARGV[0] or die "%Error: No disttitle specified,";
my $Opt_DistDate = $ARGV[1] or die "%Error: No distdate specified,"; my $Opt_DistDate = $ARGV[1] or die "%Error: No distdate specified,";

View File

@ -1,8 +1,8 @@
#!/usr/bin/perl -w #!/usr/bin/env perl
# See copyright, etc in below POD section. # See copyright, etc in below POD section.
###################################################################### ######################################################################
#require 5.006_001; use warnings;
use Getopt::Long; use Getopt::Long;
use IO::File; use IO::File;
use Pod::Usage; use Pod::Usage;

View File

@ -1,10 +1,9 @@
: # -*-Mode: perl;-*- use perl, wherever it is #!/usr/bin/env perl
eval 'exec perl -wS $0 ${1+"$@"}'
if 0;
# See copyright, etc in below POD section. # See copyright, etc in below POD section.
###################################################################### ######################################################################
require 5.006_001; require 5.006_001;
use warnings;
use Cwd; use Cwd;
BEGIN { BEGIN {
if (!$ENV{VERILATOR_ROOT} && -x "../bin/verilator") { if (!$ENV{VERILATOR_ROOT} && -x "../bin/verilator") {

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl #!/usr/bin/env perl
# DESCRIPTION: Verilator: Verilog Test driver bootstrapper # DESCRIPTION: Verilator: Verilog Test driver bootstrapper
# #
# Copyright 2008 by Wilson Snyder. This program is free software; you can # Copyright 2008 by Wilson Snyder. This program is free software; you can

View File

@ -1,8 +1,10 @@
#!/usr/bin/perl -w #!/usr/bin/env perl
# See copyright, etc in below POD section. # See copyright, etc in below POD section.
###################################################################### ######################################################################
require 5.006_001; require 5.006_001;
use warnings;
use Getopt::Long; use Getopt::Long;
use IO::File; use IO::File;
use Pod::Usage; use Pod::Usage;