From: Stu Grossman Date: Thu, 10 Oct 1996 23:34:38 +0000 (+0000) Subject: * Makefile.in (init.c): Fixup final sed script to work around X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e96dc1f7d4d910bf886300a60316b8ad11d5356c;p=binutils-gdb.git * Makefile.in (init.c): Fixup final sed script to work around Linux bug with `p' operator. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e845e0b4ee5..034ff49eb3b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +Thu Oct 10 16:32:08 1996 Stu Grossman (grossman@critters.cygnus.com) + + * Makefile.in (init.c): Fixup final sed script to work around + Linux bug with `p' operator. + Wed Oct 9 18:02:48 1996 Stan Shebs * remote-mips.c: Use the correct name everywhere (DDB) for NEC's diff --git a/gdb/Makefile.in b/gdb/Makefile.in index ca0df9b3ac5..c277b745c2a 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -603,7 +603,7 @@ init.c: $(OBS) $(TSOBS) -e 's/\.o/.c/' \ -e 's|\([^ ][^ ]*\)|$(srcdir)/\1|g' | \ xargs grep -s '^_initialize_[a-z_0-9A-Z]* *(' | \ - sed -e 's/^.*://' -e 's/^\([a-z_0-9A-Z]*\).*/ {extern void \1 PARAMS ((void)); \1 ();}/p' >>init.c-tmp + sed -e 's/^.*://' -e 's/^\([a-z_0-9A-Z]*\).*/ {extern void \1 PARAMS ((void)); \1 ();}/' >>init.c-tmp @echo '}' >>init.c-tmp @mv init.c-tmp init.c