mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-06-21 12:03:39 -05:00
compensate for windows path in env var
This commit is contained in:
parent
552eb4380c
commit
c3c0953fbd
|
|
@ -7,15 +7,18 @@ UNAME_R := $(shell uname -r)
|
|||
ifneq (,$(findstring Darwin,$(UNAME_S)))
|
||||
export SHELL=/bin/bash
|
||||
endif
|
||||
|
||||
#---------------------------------------------------------------------------------
|
||||
# path to tools
|
||||
#---------------------------------------------------------------------------------
|
||||
export PATH := $(DEVKITPRO)/devkitA64/bin:$(PATH)
|
||||
DEVKITPATH=$(shell echo "$(DEVKITPRO)" | sed -e 's/^\([a-zA-Z]\):/\/\1/')
|
||||
export PATH := $(DEVKITPATH)/devkitA64/bin:$(PATH)
|
||||
|
||||
#---------------------------------------------------------------------------------
|
||||
# add portlibs path
|
||||
#---------------------------------------------------------------------------------
|
||||
export PORTLIBS_PATH := $(DEVKITPRO)/portlibs
|
||||
export PORTLIBS_PATH := $(DEVKITPATH)/portlibs
|
||||
|
||||
|
||||
#---------------------------------------------------------------------------------
|
||||
# the prefix on the compiler executables
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user