Skip to content

Commit

Permalink
add shebangs where missing
Browse files Browse the repository at this point in the history
  • Loading branch information
xsawyerx authored and Father Chrysostomos committed Sep 22, 2012
1 parent 67f552a commit 1f00b0d
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Makefile.SH
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/sh

case $PERL_CONFIG_SH in
'')
if test -f config.sh
Expand Down
2 changes: 2 additions & 0 deletions Policy_sh.SH
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/sh

case $PERL_CONFIG_SH in
'') . ./config.sh ;;
esac
Expand Down
1 change: 1 addition & 0 deletions Porting/Maintainers.pl
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!perl
# A simple listing of core files that have specific maintainers,
# or at least someone that can be called an "interested party".
# Also, a "module" does not necessarily mean a CPAN module, it
Expand Down
2 changes: 2 additions & 0 deletions cflags.SH
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/sh

case $PERL_CONFIG_SH in
'')
if test -f config.sh; then TOP=.;
Expand Down
2 changes: 2 additions & 0 deletions myconfig.SH
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/sh

case $PERL_CONFIG_SH in
'')
if test -f config.sh; then TOP=.;
Expand Down
1 change: 1 addition & 0 deletions regen/regcharclass.pl
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!perl
package CharClass::Matcher;
use strict;
use 5.008;
Expand Down
2 changes: 2 additions & 0 deletions runtests.SH
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/sh

case $PERL_CONFIG_SH in
'')
if test ! -f config.sh; then
Expand Down
2 changes: 2 additions & 0 deletions x2p/Makefile.SH
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/sh

case $PERL_CONFIG_SH in
'')
if test -f config.sh; then TOP=.;
Expand Down
2 changes: 2 additions & 0 deletions x2p/cflags.SH
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/sh

case $PERL_CONFIG_SH in
'')
if test -f config.sh; then TOP=.;
Expand Down

0 comments on commit 1f00b0d

Please sign in to comment.