summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChe-Liang Chiou <clchiou@chromium.org>2011-06-21 17:40:34 -0700
committerChe-Liang Chiou <clchiou@chromium.org>2011-06-21 17:44:00 -0700
commit7604a7dba239c1f4f1ce2561d3c5aa968dc53d8d (patch)
tree8eca6e7e08bd321c3001211d459cd8518d386e20
parent74359b755c4a203df0fe3bf51fc53d5de87d1fbf (diff)
downloadvboot-7604a7dba239c1f4f1ce2561d3c5aa968dc53d8d.tar.gz
make: remove typo quote marks
BUG=chromium-os:16808 TEST=run "make FIRMWARE_ARCH=arm" and make sure CFLAGS are set properly Change-Id: I4cd5d8d03dabf256706a2961b6776c64c03c72ac Reviewed-on: http://gerrit.chromium.org/gerrit/2966 Reviewed-by: Che-Liang Chiou <clchiou@chromium.org> Tested-by: Che-Liang Chiou <clchiou@chromium.org>
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 125b9294..4fac353c 100644
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,7 @@ endif
# Override CC and CFLAGS for firmware builds; if you have any -D flags, please
# add them after this point (e.g., -DVBOOT_DEBUG).
#
-ifeq ($(FIRMWARE_ARCH), "arm")
+ifeq ($(FIRMWARE_ARCH), arm)
CC = armv7a-cros-linux-gnueabi-gcc
CFLAGS = -g -Os -fno-common -ffixed-r8 -msoft-float -fno-builtin \
-ffreestanding -nostdinc \
@@ -31,7 +31,7 @@ CFLAGS = -g -Os -fno-common -ffixed-r8 -msoft-float -fno-builtin \
-pipe -marm -mabi=aapcs-linux -mno-thumb-interwork -march=armv5 \
-Werror -Wall -Wstrict-prototypes -fno-stack-protector
endif
-ifeq ($(FIRMWARE_ARCH), "i386")
+ifeq ($(FIRMWARE_ARCH), i386)
CC = i686-pc-linux-gnu-gcc
CFLAGS = -g -Os -ffunction-sections -fvisibility=hidden -fno-builtin \
-ffreestanding -nostdinc \