mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-04-24 14:59:35 -05:00
fix for weirdness on Snow Leopard
This commit is contained in:
parent
881064f2f6
commit
a5236d3d22
|
|
@ -1,4 +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
|
||||
#---------------------------------------------------------------------------------
|
||||
export PORTLIBS := $(DEVKITPRO)/portlibs/arm
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user