]> Git Repo - linux.git/commitdiff
sh: Fix up link time defsym warnings.
authorPaul Mundt <[email protected]>
Wed, 13 Jun 2012 02:36:36 +0000 (11:36 +0900)
committerPaul Mundt <[email protected]>
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 <[email protected]>
arch/sh/Makefile

index 46edf070da1c377574d8ce17e52a74416f9c896d..dbf887edabd4060fb883c8c8ebcbe5c77bb631e6 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
 
This page took 0.058495 seconds and 4 git commands to generate.