diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2006-03-28 00:18:54 +0900 |
---|---|---|
committer | Sam Ravnborg <sam@mars.ravnborg.org> | 2006-04-05 12:59:36 +0200 |
commit | 0947640f4388de50a39f762748b08e586a482527 (patch) | |
tree | afbabdfed5d1b2fe1f34af579ae014498ea4b070 /Kbuild | |
parent | bc2546a67975a7bddc72f8c48b0bb2081b56f853 (diff) | |
download | linux-3.10-0947640f4388de50a39f762748b08e586a482527.tar.gz linux-3.10-0947640f4388de50a39f762748b08e586a482527.tar.bz2 linux-3.10-0947640f4388de50a39f762748b08e586a482527.zip |
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 "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}" endef # Override default regexp for specific architectures -sed-$(CONFIG_MIPS) := "/^@@@/s///p" +sed-$(CONFIG_MIPS) := "/^@@@/{s/^@@@//; s/ \#.*\$$//; p;}" quiet_cmd_offsets = GEN $@ define cmd_offsets |