diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-01-08 08:54:53 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-01-08 08:54:53 +0000 |
commit | 68ef28edc2f1bafa417da1ac8d35a3bf2a1b565b (patch) | |
tree | 6cce0584a87bba535c06222bd1bbb7ad71154b2a /manual/Makefile | |
parent | fc4157daf55dc41131e71c6149fbdc4099cb9b57 (diff) | |
download | glibc-68ef28edc2f1bafa417da1ac8d35a3bf2a1b565b.tar glibc-68ef28edc2f1bafa417da1ac8d35a3bf2a1b565b.tar.gz glibc-68ef28edc2f1bafa417da1ac8d35a3bf2a1b565b.tar.bz2 glibc-68ef28edc2f1bafa417da1ac8d35a3bf2a1b565b.zip |
Update.
1998-01-08 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* manual/Makefile (stamp-summary): Remove space after -t option
for compatibility with non-GNU sort programs.
1999-01-08 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* manual/search.texi (Comparison Functions): Fix compare_doubles
example.
1999-01-07 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* Makerules (do-tests-clean): Remove reference to obsolete
variable tests-static.
Diffstat (limited to 'manual/Makefile')
-rw-r--r-- | manual/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manual/Makefile b/manual/Makefile index 7647cb89ba..e0dad4792c 100644 --- a/manual/Makefile +++ b/manual/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1992, 93, 94, 95, 96, 97, 98 Free Software Foundation, Inc. +# Copyright (C) 1992, 93, 94, 95, 96, 97, 98, 99 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -74,7 +74,7 @@ libc.dvi: texinfo.tex # Generate the summary from the Texinfo source files for each chapter. summary.texi: stamp-summary ; stamp-summary: summary.awk $(filter-out summary.texi, $(texis)) - $(AWK) -f $^ | sort -t '' -df +0 -1 | tr '\014' '\012' > summary-tmp + $(AWK) -f $^ | sort -t'^L' -df +0 -1 | tr '\014' '\012' > summary-tmp $(move-if-change) summary-tmp summary.texi touch $@ |