From 4029a771e359c24315054a7b348146ff35bb306b Mon Sep 17 00:00:00 2001 From: Laurence Withers Date: Thu, 29 Mar 2007 09:36:35 +0000 Subject: [PATCH] Use '#!/bin/sh' as executable interpreter. This is bad, because we do actually want bash, but if we use '#!/bin/bash' then we end up sourcing enough .rc files to override any changes we have made to PATH etc. --- scripts/module-create.sh | 2 +- scripts/release.sh | 2 +- skel/make.sh | 2 +- skel/run-test.sh | 2 +- skel/scripts/functions.sh | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/module-create.sh b/scripts/module-create.sh index c59c93c..4fefccb 100755 --- a/scripts/module-create.sh +++ b/scripts/module-create.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # lw-build-system/scripts/module-create.sh # # (c)2006, Laurence Withers, . diff --git a/scripts/release.sh b/scripts/release.sh index ad49be1..66d5498 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # lw-build-system/scripts/release.sh # # (c)2006, Laurence Withers, . diff --git a/skel/make.sh b/skel/make.sh index 4134043..3f3555b 100755 --- a/skel/make.sh +++ b/skel/make.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # @P@/make.sh # # (c)2006-2007, @AUTHOR@, <@EMAIL@>. diff --git a/skel/run-test.sh b/skel/run-test.sh index 0687a38..173b46a 100755 --- a/skel/run-test.sh +++ b/skel/run-test.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # @P@/test.sh # # (c)2006, @AUTHOR@, <@EMAIL@>. diff --git a/skel/scripts/functions.sh b/skel/scripts/functions.sh index d66acc1..de78248 100755 --- a/skel/scripts/functions.sh +++ b/skel/scripts/functions.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # @P@/scripts/functions.sh # # (c)2006, @AUTHOR@, <@EMAIL@>.