diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2006-03-27 10:18:54 -0500 |
---|---|---|
committer | Sam Ravnborg <sam@mars.ravnborg.org> | 2006-04-05 06:59:36 -0400 |
commit | 0947640f4388de50a39f762748b08e586a482527 (patch) | |
tree | afbabdfed5d1b2fe1f34af579ae014498ea4b070 /Kbuild | |
parent | bc2546a67975a7bddc72f8c48b0bb2081b56f853 (diff) |
kbuild: mips: fix sed regexp to generate asm-offset.h
Changes to Makefile.kbuild ("kbuild: add -fverbose-asm to i386
Makefile") breaks asm-offset.h file on MIPS. Other archs possibly
suffer this change too but I'm not sure.
Here is a fix just for MIPS.
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'Kbuild')
-rw-r--r-- | Kbuild | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ define sed-y | |||
18 | "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}" | 18 | "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}" |
19 | endef | 19 | endef |
20 | # Override default regexp for specific architectures | 20 | # Override default regexp for specific architectures |
21 | sed-$(CONFIG_MIPS) := "/^@@@/s///p" | 21 | sed-$(CONFIG_MIPS) := "/^@@@/{s/^@@@//; s/ \#.*\$$//; p;}" |
22 | 22 | ||
23 | quiet_cmd_offsets = GEN $@ | 23 | quiet_cmd_offsets = GEN $@ |
24 | define cmd_offsets | 24 | define cmd_offsets |