[U-Boot] [patch] u-boot powerpc build error
gmane
goweol at gmail.com
Wed Jan 12 05:47:08 CET 2011
Hello,
I met this error (use GNU make 3.80).
$ make MPC885ADS_config
$ make
/home/namsh/work/u-boot/arch/powerpc/config.mk:35: Extraneous text after
`else' directive
/home/namsh/work/u-boot/arch/powerpc/config.mk:37: *** only one `else'
per conditional. Stop.
Regards,
namsh
diff --git a/arch/powerpc/config.mk b/arch/powerpc/config.mk
index 2912604..5eeba9a 100644
--- a/arch/powerpc/config.mk
+++ b/arch/powerpc/config.mk
@@ -32,13 +32,15 @@ PLATFORM_LDFLAGS += -n --gc-sections
ifdef CONFIG_SYS_LDSCRIPT
# need to strip off double quotes
LDSCRIPT := $(subst ",,$(CONFIG_SYS_LDSCRIPT))
-else ifdef CONFIG_NAND_SPL
+else
+ifdef CONFIG_NAND_SPL
LDSCRIPT := $(SRCTREE)/$(CONFIG_BOARDDIR)/u-boot-nand.lds
else
ifneq ($(wildcard $(SRCTREE)/arch/powerpc/cpu/$(CPU)/u-boot.lds),)
LDSCRIPT := $(SRCTREE)/arch/powerpc/cpu/$(CPU)/u-boot.lds
endif
endif
+endif
#
# When cross-compiling on NetBSD, we have to define __PPC__ or else we
More information about the U-Boot
mailing list