aboutsummaryrefslogtreecommitdiff
path: root/backends/platform
diff options
context:
space:
mode:
authorMax Horn2011-05-03 13:19:03 +0200
committerMax Horn2011-05-03 13:22:00 +0200
commit4dd4cf8bc0dcd4ac92f80bf4e1323d4d1caf1c78 (patch)
tree839755ccc8cecb5bc76c7d5e6bc51e84c3f87400 /backends/platform
parentf62fd4f25f5fcc237d59054af0d6182da8d8eff8 (diff)
downloadscummvm-rg350-4dd4cf8bc0dcd4ac92f80bf4e1323d4d1caf1c78.tar.gz
scummvm-rg350-4dd4cf8bc0dcd4ac92f80bf4e1323d4d1caf1c78.tar.bz2
scummvm-rg350-4dd4cf8bc0dcd4ac92f80bf4e1323d4d1caf1c78.zip
DS: Remove references to DEVKITARM
In some places we used $DEVKITARM, but in others we hardcode the path $DEVKITPRO/devkitARM. To ensure consistent behavior, I changed it to the latter everywhere for now. Should it turn out that we really want to have this flexible, we can reintroduce $DEVKITARM in a proper way. In that case, we could augment configure to set DEVKITARM to $DEVKITPRO/devkitARM, if it has not been set yet.
Diffstat (limited to 'backends/platform')
-rw-r--r--backends/platform/ds/ds.mk4
-rw-r--r--backends/platform/ds/makefile2
2 files changed, 3 insertions, 3 deletions
diff --git a/backends/platform/ds/ds.mk b/backends/platform/ds/ds.mk
index a9ed3e0096..654475e1f3 100644
--- a/backends/platform/ds/ds.mk
+++ b/backends/platform/ds/ds.mk
@@ -170,10 +170,10 @@ dsclean:
# HACK/FIXME: C compiler, for cartreset.c -- we should switch this to use CXX
# as soon as possible.
-CC := $(DEVKITARM)/bin/arm-eabi-gcc
+CC := $(DEVKITPRO)/devkitARM/bin/arm-eabi-gcc
# HACK/TODO: Pointer to objcopy. This should really be set by configure
-OBJCOPY := $(DEVKITARM)/bin/arm-eabi-objcopy
+OBJCOPY := $(DEVKITPRO)/devkitARM/bin/arm-eabi-objcopy
#
# Set various flags
diff --git a/backends/platform/ds/makefile b/backends/platform/ds/makefile
index 58d6fd4c02..e24a36ef81 100644
--- a/backends/platform/ds/makefile
+++ b/backends/platform/ds/makefile
@@ -3,7 +3,7 @@
-export PATH := $(DEVKITARM)/bin:$(PATH)
+export PATH := $(DEVKITPRO)/devkitARM/bin:$(PATH)
export portdir = $(CURDIR)/arm9
export srcdir = $(CURDIR)/../../..