From 334020a800434d20e7c3312890a2baca295c41c7 Mon Sep 17 00:00:00 2001 From: brian avery Date: Wed, 12 Apr 2017 14:29:14 -0700 Subject: 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 Signed-off-by: Richard Purdie --- scripts/oe-run-native | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/oe-run-native') 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 -- cgit 1.2.3-korg