From 15ee88eda61b42e46c5c7af77eb2f1b1b5d4b58f Mon Sep 17 00:00:00 2001 From: Laurence Withers Date: Tue, 20 Mar 2007 21:58:26 +0000 Subject: [PATCH 1/2] Remove obsolete text in `version' --- skel/version | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/skel/version b/skel/version index 62cb129..bfa04b3 100644 --- a/skel/version +++ b/skel/version @@ -8,8 +8,7 @@ # VERSION contains the full version number of the library, which is -# expected to be in 'major.minor.micro' format. It can optionally be -# suffixed with a string. +# expected to be in 'major.minor.micro' format. VERMAJOR=0 VERMINOR=0 VERMICRO=0 From 4029a771e359c24315054a7b348146ff35bb306b Mon Sep 17 00:00:00 2001 From: Laurence Withers Date: Thu, 29 Mar 2007 09:36:35 +0000 Subject: [PATCH 2/2] 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@>.