OSDN Git Service

sh: Fix up link time defsym warnings.
authorPaul Mundt <lethal@linux-sh.org>
Wed, 13 Jun 2012 02:36:36 +0000 (11:36 +0900)
committerPaul Mundt <lethal@linux-sh.org>
Wed, 13 Jun 2012 02:36:36 +0000 (11:36 +0900)
sh-linux-gnu-ld:--defsym 'jiffies=jiffies_64': ignoring invalid character `'' in expression

For some reason ld has recently started complaining about the quotes, so just
get rid of them, we don't need them for anything anyways.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
arch/sh/Makefile

index 46edf07..dbf887e 100644 (file)
@@ -114,11 +114,11 @@ endif
 
 ifdef CONFIG_CPU_LITTLE_ENDIAN
 ld-bfd                 := elf32-$(UTS_MACHINE)-linux
-LDFLAGS_vmlinux                += --defsym 'jiffies=jiffies_64' --oformat $(ld-bfd)
+LDFLAGS_vmlinux                += --defsym jiffies=jiffies_64 --oformat $(ld-bfd)
 LDFLAGS                        += -EL
 else
 ld-bfd                 := elf32-$(UTS_MACHINE)big-linux
-LDFLAGS_vmlinux                += --defsym 'jiffies=jiffies_64+4' --oformat $(ld-bfd)
+LDFLAGS_vmlinux                += --defsym jiffies=jiffies_64+4 --oformat $(ld-bfd)
 LDFLAGS                        += -EB
 endif