rust/cargo-c: update to 0.10.7+cargo-0.84.0
[oi-userland.git] / components / developer / dtracetoolkit / patches / shebang.patch
blob21aa47ec6303078b1667ff374b3320d513cba6b6
1 --- DTraceToolkit-0.99/Code/Perl/func_abc.pl.orig
2 +++ DTraceToolkit-0.99/Code/Perl/func_abc.pl
3 @@ -1,4 +1,4 @@
4 -#!./perl -w
5 +#!/usr/bin/perl -w
7 sub func_c {
8 print "Function C\n";
9 --- DTraceToolkit-0.99/Code/Perl/func_malloc.pl.orig
10 +++ DTraceToolkit-0.99/Code/Perl/func_malloc.pl
11 @@ -1,4 +1,4 @@
12 -#!./perl -w
13 +#!/usr/bin/perl -w
15 sub func_c {
16 print "Function C\n";
17 --- DTraceToolkit-0.99/Code/Perl/func_slow.pl.orig
18 +++ DTraceToolkit-0.99/Code/Perl/func_slow.pl
19 @@ -1,4 +1,4 @@
20 -#!./perl -w
21 +#!/usr/bin/perl -w
23 sub func_c {
24 print "Function C\n";
25 --- DTraceToolkit-0.99/Code/Perl/hello_strict.pl.orig
26 +++ DTraceToolkit-0.99/Code/Perl/hello_strict.pl
27 @@ -1,4 +1,4 @@
28 -#!./perl -w
29 +#!/usr/bin/perl -w
31 use strict;
33 --- DTraceToolkit-0.99/Code/Perl/hello.pl.orig
34 +++ DTraceToolkit-0.99/Code/Perl/hello.pl
35 @@ -1,3 +1,3 @@
36 -#!./perl
37 +#!/usr/bin/perl
39 print "Hello World!\n";
40 --- DTraceToolkit-0.99/Code/Ruby/func_abc.rb.orig
41 +++ DTraceToolkit-0.99/Code/Ruby/func_abc.rb
42 @@ -1,4 +1,4 @@
43 -#!./ruby -w
44 +#!/usr/bin/ruby -w
46 def func_c
47 print "Function C\n"
48 --- DTraceToolkit-0.99/Code/Ruby/func_slow.rb.orig
49 +++ DTraceToolkit-0.99/Code/Ruby/func_slow.rb
50 @@ -1,4 +1,4 @@
51 -#!./ruby -w
52 +#!/usr/bin/ruby -w
54 def func_c
55 print "Function C\n"
56 --- DTraceToolkit-0.99/Code/Shell/func_abc.sh.orig
57 +++ DTraceToolkit-0.99/Code/Shell/func_abc.sh
58 @@ -1,4 +1,4 @@
59 -#!./sh
60 +#!/usr/bin/sh
62 func_c()
64 --- DTraceToolkit-0.99/Code/Shell/func_slow.sh.orig
65 +++ DTraceToolkit-0.99/Code/Shell/func_slow.sh
66 @@ -1,4 +1,4 @@
67 -#!./sh
68 +#!/usr/bin/sh
70 func_c()
72 --- DTraceToolkit-0.99/Code/Shell/func_waste.sh.orig
73 +++ DTraceToolkit-0.99/Code/Shell/func_waste.sh
74 @@ -1,4 +1,4 @@
75 -#!./sh
76 +#!/usr/bin/sh
78 func_c()