I'm going through homebrew GBA development and trying to compile some example roms using a makefile that specifies the compiler to be used (which is special, i.e. - not regular gcc). The compiler is called 'arm-none-eabi-gcc' and lives in

Code:
/opt/devkitpro/devkitARM/bin/
The makefile used to compile the source uses this line to specify where to find it.

Code:
PATH := /opt/devkitpro/devkitARM/bin:$(PATH)
The compiler very clearly exists in the specified location and everything is spelled correctly, yet when I run make, I get the following error:

Code:
make[1]: arm-none-eabi-gcc: Command not found
make[1]: *** [template.o] Error 127
make: *** [build] Error 2
Where 'template.o' refers to the name of the source. I can compile and run regular c programs just fine, but this just can't be found. Any advice would be great, and if you need anything else to help you sniff out the problem, I'll post it as quickly as I can.

Thanks in advance.