From 5305d2e77e4c9f919764a2b76b0addc450e6baf7 Mon Sep 17 00:00:00 2001 From: Dave Murphy Date: Thu, 1 Jan 2015 22:09:08 +0000 Subject: [PATCH] always set shell to bash on OSX --- dkarm-eabi/rules/base_tools | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/dkarm-eabi/rules/base_tools b/dkarm-eabi/rules/base_tools index 2bd1a82..4fd3ed3 100644 --- a/dkarm-eabi/rules/base_tools +++ b/dkarm-eabi/rules/base_tools @@ -1,13 +1,11 @@ #--------------------------------------------------------------------------------- -# change shell on Snow Leopard +# make sure we have bash on OSX #--------------------------------------------------------------------------------- UNAME_S := $(shell uname -s) UNAME_R := $(shell uname -r) ifneq (,$(findstring Darwin,$(UNAME_S))) - ifneq (,$(findstring 10.8.0,$(UNAME_R))) - export SHELL=/bin/bash - endif + export SHELL=/bin/bash endif #--------------------------------------------------------------------------------- # path to tools