mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
sim: bfin: fix up linux-fixed-code.h generation more [PR sim/13160]
Add a trailing semi-colon to the sed print command as the BSD sed implementation wants it. It's a nop otherwise and works fine on GNU/etc... implementations too.
This commit is contained in:
parent
a24582147f
commit
6defcd57e9
@ -1,3 +1,9 @@
|
||||
2015-03-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
PR sim/13160
|
||||
* Makefile.in ($(srcdir)/linux-fixed-code.h): Put a ; after the
|
||||
print sed command for BSD compatibility.
|
||||
|
||||
2015-03-08 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
PR sim/13160
|
||||
|
@ -58,7 +58,7 @@ $(srcdir)/linux-fixed-code.h: @MAINTAINER_MODE_TRUE@ $(srcdir)/linux-fixed-code.
|
||||
$(OBJDUMP_FOR_TARGET) -d -z linux-fixed-code.o > $@.dis; \
|
||||
sed -n \
|
||||
-e 's:^[^ ]* :0x:' \
|
||||
-e '/^0x/{s: .*::;s: *$$:,:;s: :, 0x:g;p}' \
|
||||
-e '/^0x/{s: .*::;s: *$$:,:;s: :, 0x:g;p;}' \
|
||||
$@.dis; \
|
||||
rm -f $@.dis; \
|
||||
echo "};" \
|
||||
|
Loading…
Reference in New Issue
Block a user