diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-06-27 15:49:23 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-06-27 15:49:23 +0000 |
commit | f30e5a77b91aa94a2de81867721b027e7682e8ab (patch) | |
tree | c383c4d913771ec589f732d4a6c86d06dc0f9ff4 /gdb | |
parent | b9aa90c9a1820bb01fc3a7e1ca08d372cf316599 (diff) | |
download | gdb-f30e5a77b91aa94a2de81867721b027e7682e8ab.zip gdb-f30e5a77b91aa94a2de81867721b027e7682e8ab.tar.gz gdb-f30e5a77b91aa94a2de81867721b027e7682e8ab.tar.bz2 |
* Makefile.in (init.c): Drop -e option to grep. Not necessary and
Solaris /bin/grep does not not like it. From Peter Schauer.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 28142e3..1fc1963 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2002-06-27 Andrew Cagney <ac131313@redhat.com> + + * Makefile.in (init.c): Drop -e option to grep. Not necessary and + Solaris /bin/grep does not not like it. From Peter Schauer. + 2002-06-26 Tom Tromey <tromey@redhat.com> * command.h (add_setshow_cmd): Declare. diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 95b9723..ceba3e4 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -876,7 +876,7 @@ init.c: $(INIT_FILES) -e 's|\([^ ][^ ]*\)|$(srcdir)/\1|g' | \ while read f; do grep '^_initialize_[a-z_0-9A-Z]* *(' $$f 2>/dev/null; done | \ sed -e 's/^.*://' -e 's/^\([a-z_0-9A-Z]*\).*/\1/' | \ - ( echo _initialize_gdbtypes ; grep -v -e '^_initialize_gdbtypes$$' ) > init.l-tmp + ( echo _initialize_gdbtypes ; grep -v '^_initialize_gdbtypes$$' ) > init.l-tmp @echo '/* Do not modify this file. */' >>init.c-tmp @echo '/* It is created automatically by the Makefile. */'>>init.c-tmp @echo '#include "defs.h"' >>init.c-tmp |