From c0eaf0fad88f15c843098a43ca2cadbf009ce094 Mon Sep 17 00:00:00 2001 From: Jonathan Neuschäfer Date: Mon, 15 Aug 2011 22:10:09 +0200 Subject: fix common misspellings * Fix spelling with codespell[1] and manually review it. [1] http://git.profusion.mobi/cgit.cgi/lucas/codespell/ --- doc/hurd.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/hurd.texi b/doc/hurd.texi index 098bebf2..ea73a4c6 100644 --- a/doc/hurd.texi +++ b/doc/hurd.texi @@ -1759,7 +1759,7 @@ new reference port. (FIXME: xref the C library manual for information on how to send sig_post messages.) The server then sends one @code{SIGIO} signal to each registered async -user everytime I/O becomes possible. I/O is possible if at least one +user every time I/O becomes possible. I/O is possible if at least one byte can be read or written immediately. The definition of ``immediately'' must be the same as for the implementation of the @code{O_NONBLOCK} flag (@pxref{Open Modes}). In addition, every time a -- cgit v1.2.3 From 2f8e829bdc2e868d1872e21b4acae404a2316e68 Mon Sep 17 00:00:00 2001 From: Diego Nieto Cid Date: Fri, 31 Dec 2010 02:10:39 -0300 Subject: Fix 'make dist' in doc. * doc/Makefile (DIST_FILES): Remove target files. (lndist): Depend on lndist-info-targets (lndist-info-targets): New target. Distribute target files. --- doc/Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'doc') diff --git a/doc/Makefile b/doc/Makefile index 707f3304..0c00976c 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -18,8 +18,7 @@ dir := doc makemode := misc -DIST_FILES := navigating gpl.texinfo hurd.texi version.texi \ - hurd.info $(wildcard hurd.info-*) +DIST_FILES := navigating gpl.texinfo hurd.texi version.texi targets = hurd.info $(wildcard hurd.info-*) installationdir = $(infodir) @@ -56,3 +55,10 @@ stamp-version: $(top_srcdir)/Makeconf echo '@set VERSION $(hurd-version)' > version.texi.new $(move-if-change) version.texi.new version.texi touch $@ + +# XXX: the default lndist target will try to look for target files +# in the source directory. Special case them. +lndist: lndist-info-targets +lndist-info-targets: hurd.info $(wildcard hurd.info-*) + ln $? $(top_srcdir)/hurd-snap/$(dir) + -- cgit v1.2.3