diff options
author | brian avery <brian.avery@intel.com> | 2017-04-12 14:29:14 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-04-13 10:52:54 +0100 |
commit | 334020a800434d20e7c3312890a2baca295c41c7 (patch) | |
tree | 358973c1c7be744ff7f57a5b9ac3542628a33990 /scripts/oe-run-native | |
parent | fc61211efd57d1858954e5cd241fce58dee9d01b (diff) | |
download | openembedded-core-334020a800434d20e7c3312890a2baca295c41c7.tar.gz openembedded-core-334020a800434d20e7c3312890a2baca295c41c7.tar.bz2 openembedded-core-334020a800434d20e7c3312890a2baca295c41c7.zip |
oe-run-native: explicitly use bash
This script sources another script (oe-find-native-sysroot) with
arguments. It was using /bin/sh. Sourcing with arguments works only in
bash so it was failing in dash. This commit makes it dash proof.
Signed-off-by: brian avery <brian.avery@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/oe-run-native')
-rwxr-xr-x | scripts/oe-run-native | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/oe-run-native b/scripts/oe-run-native index de3c02ed34..12f7ce60f9 100755 --- a/scripts/oe-run-native +++ b/scripts/oe-run-native @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # Copyright (c) 2016, Intel Corporation. # All Rights Reserved |