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:
Andrew Cagney 2004-02-10 16:43:58 +00:00
parent 0df3397043
commit 4ff2cc4dfb
2 changed files with 8 additions and 3 deletions

View File

@ -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

View File

@ -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