From d29aace6bdf2a2a6b7884c4ba098bf1623a239c9 Mon Sep 17 00:00:00 2001 From: Felix Ruess Date: Tue, 13 Jul 2010 21:14:53 +0000 Subject: [PATCH] fix elif without argument --- conf/Makefile.arm7 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/conf/Makefile.arm7 b/conf/Makefile.arm7 index 9ecfbde12a..5dfc108692 100644 --- a/conf/Makefile.arm7 +++ b/conf/Makefile.arm7 @@ -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)