Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

sh: Fix up link time defsym warnings.

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>

+2 -2
+2 -2
arch/sh/Makefile
··· 114 114 115 115 ifdef CONFIG_CPU_LITTLE_ENDIAN 116 116 ld-bfd := elf32-$(UTS_MACHINE)-linux 117 - LDFLAGS_vmlinux += --defsym 'jiffies=jiffies_64' --oformat $(ld-bfd) 117 + LDFLAGS_vmlinux += --defsym jiffies=jiffies_64 --oformat $(ld-bfd) 118 118 LDFLAGS += -EL 119 119 else 120 120 ld-bfd := elf32-$(UTS_MACHINE)big-linux 121 - LDFLAGS_vmlinux += --defsym 'jiffies=jiffies_64+4' --oformat $(ld-bfd) 121 + LDFLAGS_vmlinux += --defsym jiffies=jiffies_64+4 --oformat $(ld-bfd) 122 122 LDFLAGS += -EB 123 123 endif 124 124