Skip to content

Commit

Permalink
* Change /usr/local/bin/perl to the perl in PATH.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.pugscode.org/pugs@31741 c213334d-75ef-0310-aa23-eaa082d1ae64
  • Loading branch information
audreyt committed Jul 18, 2010
1 parent 20e0822 commit 784582b
Show file tree
Hide file tree
Showing 22 changed files with 22 additions and 23 deletions.
3 changes: 1 addition & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ minor tools used in the development of STD.pm6 and viv.

You'll need the following Perl bits to run stuff:

* Perl 5.10.0 or later in /usr/local/bin/
(using current perl with eg `sudo ln -s /usr/bin/perl /usr/local/bin`)
* Perl 5.10.0 or later in PATH

* YAML::XS (eg sudo apt-get install libyaml-libyaml-perl)

Expand Down
2 changes: 1 addition & 1 deletion STD5_dump_match
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/bin/perl
#!/usr/bin/env perl

use STD;
use DumpMatch;
Expand Down
2 changes: 1 addition & 1 deletion cleanlex.pl
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#! /usr/local/bin/perl -p
#! /usr/bin/env perl -p
s/__S_\d\d\d/__S_/g; s/([a-z]+)_\d+/$1/g; s/FATE\d+/FATE/g;
2 changes: 1 addition & 1 deletion gen-unicode-table.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/local/bin/perl
#! /usr/bin/env perl
use 5.012; # unicore format is unstable
use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion reds
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/bin/perl
#!/usr/bin/env perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion redspans
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/bin/perl
#!/usr/bin/env perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion setting
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/bin/perl
#!/usr/bin/env perl

use STD;
use utf8;
Expand Down
2 changes: 1 addition & 1 deletion show_changed_vars
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/bin/perl
#!/usr/bin/env perl

use Term::ANSIColor qw(:constants);
use STD;
Expand Down
2 changes: 1 addition & 1 deletion stage0/std
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/bin/perl
#!/usr/bin/env perl

use STD;
use utf8;
Expand Down
2 changes: 1 addition & 1 deletion stage0/viv
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/bin/perl
#!/usr/bin/env perl

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion std
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/bin/perl
#!/usr/bin/env perl

use STD;
use utf8;
Expand Down
2 changes: 1 addition & 1 deletion std_hilite/STD_syntax_highlight
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/bin/perl
#!/usr/bin/env perl

# Core modules
use strict;
Expand Down
2 changes: 1 addition & 1 deletion std_hilite/cron_spec_highlight
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/bin/perl
#!/usr/bin/env perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion std_hilite/spec_highlight
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/bin/perl
#!/usr/bin/env perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion teststd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/bin/perl
#!/usr/bin/env perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion tlong
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/bin/perl
#!/usr/bin/env perl
use 5.10.0;

BEGIN { $ENV{STD5DEBUG} = -1; }
Expand Down
2 changes: 1 addition & 1 deletion tloop
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/bin/perl
#!/usr/bin/env perl
use 5.10.0;

BEGIN { $ENV{STD5DEBUG} = -1; }
Expand Down
2 changes: 1 addition & 1 deletion try5
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/bin/perl
#!/usr/bin/env perl
# A script to make running STD.pmc easier,
# by providing it input, and isolating it's Match yaml output.
use strict;
Expand Down
2 changes: 1 addition & 1 deletion try5_post
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/bin/perl -w
#!/usr/bin/env perl -w
# ./try5 EXPR -e '-3+2' | ./try5_post
use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion tryfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/bin/perl
#!/usr/bin/env perl

use STD;
use utf8;
Expand Down
2 changes: 1 addition & 1 deletion tryfoo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/bin/perl
#!/usr/bin/env perl

BEGIN { $ENV{STD5DEBUG} = 16383; }
use STD;
Expand Down
2 changes: 1 addition & 1 deletion viv
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/bin/perl
#!/usr/bin/env perl

=head1 NAME
Expand Down

0 comments on commit 784582b

Please sign in to comment.