mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-23 13:21:43 +08:00
2004-02-10 Andrew Cagney <cagney@redhat.com>
* Makefile.in (init.c): Fix script removing duplicates. Problem reported by Peter Schauer.
This commit is contained in:
parent
0df3397043
commit
4ff2cc4dfb
@ -1,3 +1,8 @@
|
||||
2004-02-10 Andrew Cagney <cagney@redhat.com>
|
||||
|
||||
* Makefile.in (init.c): Fix script removing duplicates. Problem
|
||||
reported by Peter Schauer.
|
||||
|
||||
2004-02-09 Elena Zannoni <ezannoni@redhat.com>
|
||||
|
||||
* bcache.c (bcache_xmalloc): Use obstack_init instead of
|
||||
|
@ -1055,9 +1055,9 @@ init.c: $(INIT_FILES)
|
||||
sed -n -e 's/^_initialize_\([a-z_0-9A-Z]*\).*/\1/p' $$f 2>/dev/null; \
|
||||
done | \
|
||||
while read f; do \
|
||||
case "$$fs" in \
|
||||
"* $$f *") ;; \
|
||||
*) echo $$f ; fs="$$fs $$f ";; \
|
||||
case " $$fs " in \
|
||||
*" $$f "* ) ;; \
|
||||
* ) echo $$f ; fs="$$fs $$f";; \
|
||||
esac; \
|
||||
done >> init.l-tmp
|
||||
@echo '/* Do not modify this file. */' >>init.c-tmp
|
||||
|
Loading…
Reference in New Issue
Block a user