From 1f00b0d68b2ebb8ceb0fa6a2ac68f41b2a0203c8 Mon Sep 17 00:00:00 2001 From: Sawyer X Date: Sat, 22 Sep 2012 15:48:09 +0300 Subject: [PATCH] add shebangs where missing --- Makefile.SH | 2 ++ Policy_sh.SH | 2 ++ Porting/Maintainers.pl | 1 + cflags.SH | 2 ++ myconfig.SH | 2 ++ regen/regcharclass.pl | 1 + runtests.SH | 2 ++ x2p/Makefile.SH | 2 ++ x2p/cflags.SH | 2 ++ 9 files changed, 16 insertions(+) diff --git a/Makefile.SH b/Makefile.SH index f83288e..f6a54f5 100755 --- a/Makefile.SH +++ b/Makefile.SH @@ -1,3 +1,5 @@ +#!/bin/sh + case $PERL_CONFIG_SH in '') if test -f config.sh diff --git a/Policy_sh.SH b/Policy_sh.SH index cc310dd..1c99255 100755 --- a/Policy_sh.SH +++ b/Policy_sh.SH @@ -1,3 +1,5 @@ +#!/bin/sh + case $PERL_CONFIG_SH in '') . ./config.sh ;; esac diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index e107f71..c9b4752 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -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 diff --git a/cflags.SH b/cflags.SH index 6420bf3..899c465 100755 --- a/cflags.SH +++ b/cflags.SH @@ -1,3 +1,5 @@ +#!/bin/sh + case $PERL_CONFIG_SH in '') if test -f config.sh; then TOP=.; diff --git a/myconfig.SH b/myconfig.SH index f5b432a..eafc458 100755 --- a/myconfig.SH +++ b/myconfig.SH @@ -1,3 +1,5 @@ +#!/bin/sh + case $PERL_CONFIG_SH in '') if test -f config.sh; then TOP=.; diff --git a/regen/regcharclass.pl b/regen/regcharclass.pl index 7d12642..b22a8a9 100755 --- a/regen/regcharclass.pl +++ b/regen/regcharclass.pl @@ -1,3 +1,4 @@ +#!perl package CharClass::Matcher; use strict; use 5.008; diff --git a/runtests.SH b/runtests.SH index bab27e9..24e1ffa 100755 --- a/runtests.SH +++ b/runtests.SH @@ -1,3 +1,5 @@ +#!/bin/sh + case $PERL_CONFIG_SH in '') if test ! -f config.sh; then diff --git a/x2p/Makefile.SH b/x2p/Makefile.SH index 1df26d5..3f16623 100755 --- a/x2p/Makefile.SH +++ b/x2p/Makefile.SH @@ -1,3 +1,5 @@ +#!/bin/sh + case $PERL_CONFIG_SH in '') if test -f config.sh; then TOP=.; diff --git a/x2p/cflags.SH b/x2p/cflags.SH index 255f586..caeb336 100755 --- a/x2p/cflags.SH +++ b/x2p/cflags.SH @@ -1,3 +1,5 @@ +#!/bin/sh + case $PERL_CONFIG_SH in '') if test -f config.sh; then TOP=.; -- 2.7.4