summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@gnu.org>2006-11-27 23:21:38 +0000
committerThomas Schwinge <tschwinge@gnu.org>2009-06-18 00:26:56 +0200
commit6c69296d41273d98e59b84000bf93c37c7ff5f03 (patch)
treeea26ee189525d3ba73697678af180a436bdd7faa
parent4319b1c2e5e9dc7d5c6e145b7363124246f7ac54 (diff)
2006-11-28 Thomas Schwinge <tschwinge@gnu.org>
* doc/Makefrag.am ($(srcdir)/doc/version.texi): Oppress a potential error message from grep.
-rw-r--r--ChangeLog11
-rw-r--r--doc/Makefrag.am2
2 files changed, 9 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index d8311f5..fd48553 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,11 @@
+2006-11-28 Thomas Schwinge <tschwinge@gnu.org>
+
+ * doc/Makefrag.am ($(srcdir)/doc/version.texi): Oppress a potential
+ error message from grep.
+
2006-11-26 Samuel Thibault <samuel.thibault@ens-lyon.org>
- Fix i386's 4GiB overflow.
+ [bug #17346 --- ``GNU mach can't handle 4GB memory'']
* i386/i386at/model_dep.c (mem_size_init): Truncate memory size to
4GiB.
@@ -12,7 +17,7 @@
2006-11-20 Samuel Thibault <samuel.thibault@ens-lyon.org>
- Asm tidy.
+ [patch #5328 --- ``GNU Mach asm statements tidy'']
* i386/i386/fpe_linkage.c (disable_fpe): Gather dependent asm
statements, add `ax' clobber.
(fpe_exception_fixup): Drop bogus cast from input parameter of lcall
@@ -25,7 +30,7 @@
* i386/include/mach/i386/cthreads.h (cthread_sp): Likewise.
* i386/intel/pmap.c (pmap_unmap_page_zero): Fix asm clobber into `eax'.
- De4x5 probe fixup.
+ [patch #5375 --- ``Fix de4x5 probe'']
* linux/src/drivers/net/de4x5.c (pci_probe): Make probe loop stop on
any error, not only device not found.
diff --git a/doc/Makefrag.am b/doc/Makefrag.am
index 093b272..a60722a 100644
--- a/doc/Makefrag.am
+++ b/doc/Makefrag.am
@@ -103,7 +103,7 @@ pdf-local:
# TODO. There doesn't seem to be a hook or `-local' target suitable for this.
$(srcdir)/doc/version.texi: $(srcdir)/doc/stamp-vti
@if test -d $(web); then :; \
- elif grep -q :ext: $(top_srcdir)/CVS/Root; then \
+ elif grep -q :ext: $(top_srcdir)/CVS/Root 2> /dev/null; then \
echo "*** As it seems that you'd be allowed to check in the" \
"possible resulting fixes, you may cosider running" \
" \`make $(web)' to get a checkout of the web pages of the" \