diff options
author | Matt Mitchell <mmitche@microsoft.com> | 2015-03-10 10:05:15 -0700 |
---|---|---|
committer | Matt Mitchell <mmitche@microsoft.com> | 2015-03-10 10:05:15 -0700 |
commit | ad5827e25213a79f414f1439f1b0532a643e3901 (patch) | |
tree | 98496fb48140539a462a66c1ef59a75b6666a82e | |
parent | 76230d94aa5b83a95d826c691d572b8010d1ff31 (diff) | |
parent | b10e8b341bd9ef8da101bd96437a1e539aecd9bc (diff) | |
download | coreclr-ad5827e25213a79f414f1439f1b0532a643e3901.tar.gz coreclr-ad5827e25213a79f414f1439f1b0532a643e3901.tar.bz2 coreclr-ad5827e25213a79f414f1439f1b0532a643e3901.zip |
Merge pull request #416 from janhenke/master
Do not hardcode path to bash into the shell scripts.
-rwxr-xr-x | build.sh | 2 | ||||
-rwxr-xr-x | src/pal/tools/gen-buildsys-clang.sh | 2 | ||||
-rwxr-xr-x | src/pal/tools/setup-compiler-clang.sh | 2 | ||||
-rwxr-xr-x | src/pal/tools/setup-ubuntuvm.sh | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash usage() { diff --git a/src/pal/tools/gen-buildsys-clang.sh b/src/pal/tools/gen-buildsys-clang.sh index 43d0065685..321248ce1c 100755 --- a/src/pal/tools/gen-buildsys-clang.sh +++ b/src/pal/tools/gen-buildsys-clang.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # # This file invokes cmake and generates the build system for gcc. # diff --git a/src/pal/tools/setup-compiler-clang.sh b/src/pal/tools/setup-compiler-clang.sh index 15427b797d..56b75f6a25 100755 --- a/src/pal/tools/setup-compiler-clang.sh +++ b/src/pal/tools/setup-compiler-clang.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # # This file sets the environment to be used for building with clang. # diff --git a/src/pal/tools/setup-ubuntuvm.sh b/src/pal/tools/setup-ubuntuvm.sh index 1211202098..89d8ea37b2 100755 --- a/src/pal/tools/setup-ubuntuvm.sh +++ b/src/pal/tools/setup-ubuntuvm.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash echo Installing basic Ubuntu \(VM\) XPlat environment |