diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-01-18 09:38:36 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-01-18 09:38:36 +0000 |
commit | 464d646f3e667e42742a995b841080ec7b6a1540 (patch) | |
tree | bc4aeb48eff72bd88364a1c04ff4faa5df1d4781 /manual/libc-texinfo.sh | |
parent | d0d7d3824e562ac4033a0960257682c744c7bc61 (diff) | |
download | glibc-464d646f3e667e42742a995b841080ec7b6a1540.tar.gz |
Update.
1999-01-18 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* posix/test-vfork.c: Include <sys/wait.h> for wait declaration.
1999-01-16 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* manual/ctype.texi: Fix cross refs and typos.
* manual/charset.texi: Likewise.
1999-01-18 Ulrich Drepper <drepper@cygnus.com>
* Rules: Add dummp.y and dummy.o to common-generated.
Patch by Andreas Schwab.
1999-01-18 10:07 -0500 Zack Weinberg <zack@rabi.phys.columbia.edu>
* manual/libc-texinfo.sh: Use tsort.awk.
* manual/tsort.awk: New file.
* manual/Makefile (minimal-dist): Add tsort.awk.
(distribute): Remove generated files: summary.texi,
stamp-summary, chapters.texi, top-menu.texi, and texis.
Diffstat (limited to 'manual/libc-texinfo.sh')
-rw-r--r-- | manual/libc-texinfo.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/libc-texinfo.sh b/manual/libc-texinfo.sh index 321b9554ad..e7af132dbf 100644 --- a/manual/libc-texinfo.sh +++ b/manual/libc-texinfo.sh @@ -25,7 +25,7 @@ collect_nodes () { END { for (x in file) if (file[x] != "") print file[x] ":" x, file[nnode[x]] ":" nnode[x] }' | - tsort | sed 's/_/ /g; $d' + $AWK -f tsort.awk | sed 's/_/ /g' } collect_nodes $1 | build_menu |