fix elif without argument

This commit is contained in:
Felix Ruess
2010-07-13 21:14:53 +00:00
parent 3c50f7b48d
commit d29aace6bd
+5 -5
View File
@@ -31,13 +31,13 @@ SRC_ARCH = arm7
# Define programs and commands.
HAVE_ARM_NONE_EABI_GCC := $(wildcard /usr/bin/arm-none-eabi-gcc)
ifeq ($(strip $(HAVE_ARM_NONE_EABI_GCC)),)
CC = arm-elf-gcc
CC = /home/flixr/code/arm-2010q1/bin/arm-none-eabi-gcc
LD = $(CC)
SHELL = sh
OBJCOPY = arm-elf-objcopy
OBJDUMP = arm-elf-objdump
SIZE = arm-elf-size
NM = arm-elf-nm
OBJCOPY = /home/flixr/code/arm-2010q1/bin/arm-none-eabi-objcopy
OBJDUMP = /home/flixr/code/arm-2010q1/bin/arm-none-eabi-objdump
SIZE = /home/flixr/code/arm-2010q1/bin/arm-none-eabi-size
NM = /home/flixr/code/arm-2010q1/bin/arm-none-eabi-nm
else
CC = arm-none-eabi-gcc
LD = $(CC)