Update of /cvsroot/linux-vax/toolchain/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31831
Modified Files:
compare_buildlog.sh copy_directory.sh
generate_and_apply_upstream_patches.sh
generate_upstream_patches.sh prepare_toolchain_hacking.sh
run_test_build.sh
Log Message:
- Use "#!/usr/bin/env bash" instead of "#!/bin/sh"
Index: prepare_toolchain_hacking.sh
===================================================================
RCS file: /cvsroot/linux-vax/toolchain/scripts/prepare_toolchain_hacking.sh,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- prepare_toolchain_hacking.sh 1 Oct 2005 14:24:38 -0000 1.5
+++ prepare_toolchain_hacking.sh 28 Dec 2005 18:27:44 -0000 1.6
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/usr/bin/env bash
set -e
Index: copy_directory.sh
===================================================================
RCS file: /cvsroot/linux-vax/toolchain/scripts/copy_directory.sh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- copy_directory.sh 17 Apr 2005 21:05:04 -0000 1.2
+++ copy_directory.sh 28 Dec 2005 18:27:44 -0000 1.3
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
#
# $1 - source directory
Index: generate_and_apply_upstream_patches.sh
===================================================================
RCS file: /cvsroot/linux-vax/toolchain/scripts/generate_and_apply_upstream_patches.sh,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- generate_and_apply_upstream_patches.sh 28 Dec 2005 17:16:14 -0000 1.6
+++ generate_and_apply_upstream_patches.sh 28 Dec 2005 18:27:44 -0000 1.7
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/usr/bin/env bash
set -e
Index: compare_buildlog.sh
===================================================================
RCS file: /cvsroot/linux-vax/toolchain/scripts/compare_buildlog.sh,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- compare_buildlog.sh 28 Dec 2005 17:21:05 -0000 1.5
+++ compare_buildlog.sh 28 Dec 2005 18:27:44 -0000 1.6
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/usr/bin/env bash
TEMP1FILE="`_Tempfile`"
TEMP2FILE="`_Tempfile`"
Index: run_test_build.sh
===================================================================
RCS file: /cvsroot/linux-vax/toolchain/scripts/run_test_build.sh,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- run_test_build.sh 21 Dec 2005 15:37:00 -0000 1.17
+++ run_test_build.sh 28 Dec 2005 18:27:44 -0000 1.18
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/usr/bin/env bash
if [ $# -lt 7 -o $# -gt 8 ]; then
echo "$0 target /path/to/build-directory /path/to/vax_toolchain_config ma...@ad... /path/to/build.okay /path/to/build.not-okay /path/to/lockfile {/path/to/testresult_dir}" >&2
Index: generate_upstream_patches.sh
===================================================================
RCS file: /cvsroot/linux-vax/toolchain/scripts/generate_upstream_patches.sh,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- generate_upstream_patches.sh 28 Dec 2005 17:16:14 -0000 1.7
+++ generate_upstream_patches.sh 28 Dec 2005 18:27:44 -0000 1.8
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/usr/bin/env bash
set -e
|