mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-04-26 00:06:11 -05:00
fix shell weirdness on OSX
This commit is contained in:
parent
a5236d3d22
commit
a362a5c53a
|
|
@ -1,3 +1,15 @@
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# change shell on Snow Leopard
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
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
|
||||||
|
endif
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
# path to tools
|
# path to tools
|
||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user