mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-30 19:47:50 +08:00
fix elif without argument
This commit is contained in:
+5
-5
@@ -31,13 +31,13 @@ SRC_ARCH = arm7
|
|||||||
# Define programs and commands.
|
# Define programs and commands.
|
||||||
HAVE_ARM_NONE_EABI_GCC := $(wildcard /usr/bin/arm-none-eabi-gcc)
|
HAVE_ARM_NONE_EABI_GCC := $(wildcard /usr/bin/arm-none-eabi-gcc)
|
||||||
ifeq ($(strip $(HAVE_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)
|
LD = $(CC)
|
||||||
SHELL = sh
|
SHELL = sh
|
||||||
OBJCOPY = arm-elf-objcopy
|
OBJCOPY = /home/flixr/code/arm-2010q1/bin/arm-none-eabi-objcopy
|
||||||
OBJDUMP = arm-elf-objdump
|
OBJDUMP = /home/flixr/code/arm-2010q1/bin/arm-none-eabi-objdump
|
||||||
SIZE = arm-elf-size
|
SIZE = /home/flixr/code/arm-2010q1/bin/arm-none-eabi-size
|
||||||
NM = arm-elf-nm
|
NM = /home/flixr/code/arm-2010q1/bin/arm-none-eabi-nm
|
||||||
else
|
else
|
||||||
CC = arm-none-eabi-gcc
|
CC = arm-none-eabi-gcc
|
||||||
LD = $(CC)
|
LD = $(CC)
|
||||||
|
|||||||
Reference in New Issue
Block a user